-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 2.49 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
{
"name": "@coobaha/typed-fastify",
"description": "opinionated types for fastify",
"version": "3.0.0",
"bin": {
"tfs": "bin/gen.bin.js",
"typed-fastify-schema": "bin/gen.bin.js"
},
"dependencies": {
"@types/json-schema": "^7.0.15",
"chokidar": "4.0.1",
"crypto-js": "^4.2.0",
"glob": "^11.0.0",
"json-schema-merge-allof": "^0.8.1",
"json-schema-traverse": "^1.0.0",
"std-env": "3.7.0",
"type-fest": "^4.26.1",
"typescript-json-schema": "^0.65.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@fastify/swagger": "^9.2.0",
"@fastify/swagger-ui": "^5.1.0",
"@types/crypto-js": "^4.2.2",
"@types/glob": "^8.1.0",
"@types/json-schema-merge-allof": "^0.6.5",
"@types/lint-staged": "^13.3.0",
"@types/node": "^22.7.6",
"@types/split2": "^4.2.3",
"@types/tap": "^15.0.12",
"@types/yargs": "^17.0.33",
"ajv-formats": "3.0.1",
"ajv-keywords": "5.1.0",
"coveralls": "3.1.1",
"fastify": "^5.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"pino-pretty": "^11.3.0",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"split2": "^4.2.0",
"syncpack": "^13.0.0",
"tap": "^21.0.1",
"ts-node-dev": "^2.0.0",
"tsd": "^0.31.2",
"typescript": "^5.6.3"
},
"directories": {
"test": "test/",
"bin": "bin",
"lib": "lib"
},
"files": [
"{src,lib,bin}/**/*.{js,ts,map}"
],
"homepage": "https://github.com/Coobaha/typed-fastify",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"lint-staged": {
"*.{js,ts}": [
"prettier --write"
],
"package.json": [
"syncpack format"
]
},
"main": "lib/index.js",
"packageManager": "[email protected]",
"peerDependencies": {
"fastify": "^4"
},
"repository": "ssh://[email protected]/Coobaha/typed-fastify.git",
"scripts": {
"build": "tsc -p src && tsc -p generator",
"format": "prettier --cache --write .",
"postpublish": "pinst --enable",
"prepare": "husky",
"prepublishOnly": "pinst --disable",
"preserver": "tsnd generator/gen.bin.ts gen 'test/test_schema.ts'",
"pretest": "tsnd generator/gen.bin.ts gen 'test/test_schema.ts'",
"server": "pnpm preserver && tsnd test/server.ts",
"test": "NODE_ENV=test pnpm pretest && pnpm test:types && pnpm test:integration",
"test:integration": "tap",
"test:types": "tsc -p test/tsconfig.test.json"
},
"tap": {
"include": [
"test/*.test.ts"
],
"reporter": "dot"
}
}