-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.5 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
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
101
102
103
104
105
106
{
"name": "fastify-zod-openapi",
"version": "5.7.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://git@github.com/samchungy/fastify-zod-openapi.git"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"fastify-zod-openapi/source": "./src/index.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.cts",
"files": [
"lib"
],
"scripts": {
"build": "skuba build-package",
"format": "skuba format",
"lint": "skuba lint",
"prepare": "pnpm build",
"release": "pnpm build && changeset publish",
"start": "skuba node --port=5678 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": "^7.0.1",
"fastify-plugin": "^5.0.0",
"zod-openapi": "^5.4.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.1",
"@fastify/swagger": "9.8.1",
"@fastify/swagger-ui": "6.1.0",
"@fastify/under-pressure": "9.1.0",
"@types/node": "24.3.0",
"eslint-plugin-import-zod": "1.2.1",
"eslint-plugin-zod-openapi": "2.0.0",
"fastify": "5.10.0",
"skuba": "16.2.0",
"zod": "4.4.3"
},
"peerDependencies": {
"@fastify/swagger": "^9.0.0",
"@fastify/swagger-ui": "^5.0.1 || ^6.0.0",
"fastify": "5",
"zod": "^3.25.74 || ^4.0.0"
},
"peerDependenciesMeta": {
"@fastify/swagger": {
"optional": true
},
"@fastify/swagger-ui": {
"optional": true
}
},
"packageManager": "pnpm@10.34.3",
"engines": {
"node": ">=20"
},
"publishConfig": {
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
}
},
"skuba": {
"entryPoint": "src/index.ts",
"template": "oss-npm-package",
"type": "package",
"version": "16.2.0"
}
}