-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.54 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
{
"name": "@eropple/fastify-openapi3",
"version": "1.0.2",
"author": "Ed Ropple",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eropple/fastify-openapi3"
},
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"*",
"src/**/*",
"test/**/*",
"dist/**/*",
"examples/**/*"
],
"scripts": {
"build": "tsc",
"watch": "pnpm run build --watch",
"test": "vitest run",
"lint": "biome check",
"lint:fix": "biome check --write",
"typecheck": "tsc --noEmit",
"demo": "node --loader ts-node/esm ./examples/start-server.ts",
"prepare": "lefthook install"
},
"dependencies": {
"@seriousme/openapi-schema-validator": "1.7.1",
"change-case": "^4.1.2",
"fastify-plugin": "^5",
"js-yaml": "^4.1.0",
"lodash-es": "^4.17.21",
"openapi-ts": "^0.3.4",
"openapi3-ts": "^2.0.2",
"utility-types": "^3.11.0"
},
"peerDependencies": {
"@scalar/fastify-api-reference": "^1.25.7",
"ajv": "^8",
"fastify": "^5",
"typebox": "^1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@fastify/cookie": "^11.0.2",
"@fastify/formbody": "^8.0.2",
"@types/js-yaml": "^4.0.5",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.1.2",
"@vitest/coverage-v8": "^2.1.2",
"ajv": "^8.17.1",
"fastify": "^5",
"fastify-raw-body": "^5.0.0",
"lefthook": "^2.1.0",
"ts-node": "^10.9.1",
"typebox": "^1.0.53",
"typescript": "^5.5.2",
"vitest": "^2.1.2"
}
}