-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
100 lines (100 loc) · 2.28 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
{
"name": "fastify-zod-openapi",
"version": "4.0.0",
"description": "Fastify plugin for zod-openapi",
"keywords": [
"typescript",
"json-schema",
"swagger",
"openapi",
"openapi3",
"zod",
"zod-openapi",
"fastify",
"plugin",
"type",
"provider"
],
"homepage": "https://github.com/samchungy/fastify-zod-openapi#readme",
"bugs": {
"url": "https://github.com/samchungy/fastify-zod-openapi/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/samchungy/fastify-zod-openapi.git"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.ts"
},
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "crackle package",
"format": "skuba format",
"lint": "skuba lint",
"prepare": "pnpm build",
"start": "skuba node --port=5000 examples/openapi.ts",
"test": "skuba test",
"test:ci": "skuba test --coverage",
"test:watch": "skuba test --watch"
},
"dependencies": {
"@fastify/error": "^4.0.0",
"fast-json-stringify": "^6.0.0",
"fastify-plugin": "^5.0.0"
},
"devDependencies": {
"@crackle/cli": "0.15.5",
"@fastify/swagger": "9.4.2",
"@fastify/swagger-ui": "5.2.1",
"@types/node": "22.10.7",
"eslint-plugin-zod-openapi": "1.0.0",
"fastify": "5.2.1",
"skuba": "9.1.0",
"zod": "3.24.1",
"zod-openapi": "4.2.2"
},
"peerDependencies": {
"@fastify/swagger": "^9.0.0",
"@fastify/swagger-ui": "^5.0.1",
"fastify": "5",
"zod": "^3.21.4",
"zod-openapi": "^4.2.0"
},
"peerDependenciesMeta": {
"@fastify/swagger": {
"optional": true
},
"@fastify/swagger-ui": {
"optional": true
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"publishConfig": {
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"skuba": {
"entryPoint": "src/index.ts",
"template": "oss-npm-package",
"type": "package",
"version": "9.0.1"
}
}