-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
73 lines (73 loc) · 2.23 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
{
"name": "@fastify/type-provider-typebox",
"version": "4.0.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.32"
},
"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",
"test:tap": "tap tests/index.js --no-check-coverage",
"test:types": "tsd",
"test": "npm-run-all build test:tap test:types",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint . --ext .ts --ext .js --ext .mts --ext .mjs",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-type-provider-typebox.git"
},
"keywords": [
"typebox",
"fastify"
],
"author": "RafaelGSS",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-type-provider-typebox/issues"
},
"homepage": "https://github.com/fastify/fastify-type-provider-typebox#readme",
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.5",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.0.0",
"fastify": "^4.17.0",
"fastify-plugin": "^4.5.0",
"fastify-tsconfig": "^2.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.0",
"tap": "^16.3.0",
"tsd": "^0.30.1",
"typescript": "^5.0.2"
},
"tsd": {
"directory": "types"
}
}