-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
101 lines (101 loc) · 2.65 KB
/
package.json
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
101
{
"name": "@fastify/type-provider-typebox",
"version": "5.1.0",
"description": "A Type Provider for Typebox over Fastify",
"module": "dist/esm/index.mjs",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.mjs"
}
}
},
"peerDependencies": {
"@sinclair/typebox": ">=0.26 <=0.34"
},
"scripts": {
"build:clean": "rimraf ./dist",
"build:cjs": "tsc --outDir dist/cjs --module CommonJS --moduleResolution Node10 --sourcemap false",
"build:esm": "tsc --outDir dist/esm --module NodeNext --moduleResolution NodeNext --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:tap": "tap",
"test:types": "tsd",
"test": "npm-run-all build test:tap test:types",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-type-provider-typebox.git"
},
"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.17.0",
"@fastify/pre-commit": "^2.1.0",
"@tapjs/tsx": "^3.0.0",
"@types/node": "^22.7.6",
"eslint": "^9.17.0",
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.0",
"fastify-tsconfig": "^2.0.0",
"neostandard": "^0.12.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"tap": "^21.0.1",
"tsd": "^0.31.0",
"typescript": "~5.5.4"
},
"tsd": {
"directory": "types"
},
"tap": "./.taprc.yaml"
}