-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@fastify/type-provider-typebox",
"version": "6.1.0",
"description": "A Type Provider for Typebox over Fastify",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"peerDependencies": {
"typebox": "^1.1.14",
"ajv-formats": "^3.0.1"
},
"scripts": {
"build:clean": "rimraf ./dist",
"build:cjs": "tsc --outDir dist/cjs --module CommonJS --moduleResolution bundler --declaration --sourcemap false",
"build:esm": "tsc --outDir dist/esm --module NodeNext --moduleResolution NodeNext --declaration --sourcemap false",
"build:post": "node post-build.js",
"build:test": "attw --pack .",
"build": "npm-run-all build:clean build:cjs build:esm build:post build:test",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test:node": "node --test test/index.cjs",
"test:types": "tstyche",
"test": "npm-run-all build test:node test:types",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-type-provider-typebox.git"
},
"files": [
"dist",
"index.ts"
],
"keywords": [
"typebox",
"fastify"
],
"author": "RafaelGSS",
"contributors": [
{
"name": "Matteo Collina",
"email": "hello@matteocollina.com"
},
{
"name": "James Sumners",
"url": "https://james.sumners.info"
},
{
"name": "Frazer Smith",
"email": "frazer.dev@icloud.com",
"url": "https://github.com/fdawgs"
},
{
"name": "Gürgün Dayıoğlu",
"email": "hey@gurgun.day",
"url": "https://heyhey.to/G"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-type-provider-typebox/issues"
},
"homepage": "https://github.com/fastify/fastify-type-provider-typebox#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fastify"
},
{
"type": "opencollective",
"url": "https://opencollective.com/fastify"
}
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@types/node": "^26.0.0",
"eslint": "^9.17.0",
"fastify": "^5.0.0",
"fastify-plugin": "^6.0.0",
"fastify-tsconfig": "^3.0.0",
"neostandard": "^0.13.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"tstyche": "^7.0.0",
"typescript": "~6.0.2"
}
}