-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.95 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.95 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
{
"name": "fastify-type-provider-zod",
"version": "6.1.0",
"description": "Zod Type Provider for Fastify@5",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.cts",
"exports": {
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
},
"default": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"files": [
"src",
"dist"
],
"scripts": {
"build": "vite build",
"prepare": "npm run build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ci": "npm run build && npm run typescript && npm run test:coverage",
"lint": "biome check . && tsc --noEmit",
"lint:fix": "biome check --write .",
"typescript": "tsd",
"prepublishOnly": "npm run build"
},
"repository": {
"url": "https://github.com/turkerdev/fastify-type-provider-zod"
},
"keywords": [
"fastify",
"zod",
"type",
"provider"
],
"author": "turkerd",
"license": "MIT",
"bugs": {
"url": "https://github.com/turkerdev/fastify-type-provider-zod/issues"
},
"homepage": "https://github.com/turkerdev/fastify-type-provider-zod",
"dependencies": {
"@fastify/error": "^4.2.0"
},
"peerDependencies": {
"@fastify/swagger": ">=9.5.1",
"fastify": "^5.5.0",
"openapi-types": "^12.1.3",
"zod": ">=4.1.5"
},
"devDependencies": {
"@biomejs/biome": "^2.3.0",
"@fastify/swagger": "^9.5.2",
"@fastify/swagger-ui": "^5.2.3",
"@kibertoad/biome-config": "^2.0.0",
"@readme/openapi-parser": "^5.0.2",
"@types/node": "^24.9.1",
"@vitest/coverage-v8": "^3.2.4",
"fastify": "^5.6.1",
"fastify-plugin": "^5.0.1",
"oas-validator": "^5.0.8",
"tsd": "^0.33.0",
"typescript": "^5.9.3",
"unplugin-isolated-decl": "^0.15.2",
"vitest": "^3.2.4",
"zod": "^4.1.12"
},
"tsd": {
"directory": "types"
}
}