-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "@eropple/fastify-openapi3",
"version": "0.8.0",
"author": "Ed Ropple",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"*",
"src/**/*",
"test/**/*",
"dist/**/*",
"examples/**/*"
],
"scripts": {
"build": "tsc",
"watch": "yarn run -s build --watch",
"test": "vitest run",
"lint": "eslint",
"demo": "node --loader ts-node/esm ./examples/start-server.ts",
"prepare": "husky"
},
"dependencies": {
"@seriousme/openapi-schema-validator": "1.7.1",
"change-case": "^4.1.2",
"fastify-plugin": "^5",
"js-yaml": "^4.1.0",
"openapi-ts": "^0.3.4",
"openapi3-ts": "^2.0.2",
"utility-types": "^3.11.0"
},
"peerDependencies": {
"@scalar/fastify-api-reference": "^1.25.7",
"@sinclair/typebox": ">=0.32.9",
"ajv": "^8",
"fastify": "^5"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@sinclair/typebox": "^0.32.9",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vitest/coverage-v8": "^2.1.2",
"ajv": "^8.17.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"fastify": "^5",
"globals": "^15.10.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"ts-node": "^10.9.1",
"typescript": "^5.5.2",
"vitest": "^2.1.2"
}
}