-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.13 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.13 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
{
"name": "@bitfocusas/api",
"version": "1.2.2",
"description": "Fastify API server with Zod validation - a type-safe, production-ready API library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bitfocusas/api.git"
},
"homepage": "https://github.com/bitfocusas/api#readme",
"bugs": {
"url": "https://github.com/bitfocusas/api/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"example:simple": "tsx examples/simple.ts",
"example:basic": "tsx examples/basic.ts",
"example:auth": "tsx examples/custom-auth.ts",
"example:fastify": "tsx examples/custom-fastify.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run test/unit",
"test:e2e": "vitest run test/e2e",
"release": "release-it",
"prepare": "husky"
},
"keywords": [
"fastify",
"zod",
"typescript",
"api",
"swagger",
"validation"
],
"author": "William Viker <william@bitfocus.io>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"zod": "^4.1.5"
},
"dependencies": {
"@fastify/cors": "^11.1.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.6.1",
"@fastify/swagger-ui": "^5.2.3",
"dotenv": "^17.2.3",
"fastify": "^5.6.2",
"fastify-metrics": "^12.1.0",
"fastify-type-provider-zod": "^6.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@release-it/conventional-changelog": "^10.0.2",
"@types/node": "^24.10.1",
"@types/supertest": "^6.0.3",
"@vitest/ui": "^4.0.13",
"husky": "^9.1.7",
"pino-pretty": "^13.1.2",
"release-it": "^19.0.6",
"supertest": "^7.1.4",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.13",
"zod": "^4.1.12"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}