-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.04 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": "@aklinker1/zeta",
"description": "Composable, testable, OpenAPI-first backend framework with validation built-in",
"version": "1.2.5",
"type": "module",
"license": "MIT",
"packageManager": "bun@1.3.2",
"module": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./types": "./src/types.ts",
"./client": "./src/client.ts",
"./testing": "./src/testing.ts",
"./adapters/zod-schema-adapter": "./src/adapters/zod-schema-adapter.ts",
"./transports/bun-transport": "./src/transports/bun-transport.ts",
"./transports/deno-transport": "./src/transports/deno-transport.ts"
},
"files": [
"src/*.ts",
"src/adapters/*.ts",
"src/internal/*.ts",
"src/transports/*.ts"
],
"publishConfig": {
"access": "public"
},
"repository": {
"url": "https://github.com/aklinker1/zeta"
},
"keywords": [
"backend",
"server",
"validation",
"openapi"
],
"scripts": {
"dev": "bun test --watch",
"build": "echo 'Noop - nothing to build.'",
"bench": "bun run src/__tests__/bench.ts",
"example": "bun --watch run example.ts",
"example:prod": "NODE_ENV=production bun run example",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@standard-schema/spec": "^1.0.0",
"openapi-types": "^12.1.3",
"rou3": "^0.7.1"
},
"devDependencies": {
"@aklinker1/check": "^2.2.0",
"@typescript/native-preview": "^7.0.0-dev.20251114.1",
"@types/bun": "latest",
"changelogen": "^0.6.2",
"elysia": "^1.3.5",
"expect-type": "^1.2.1",
"hono": "^4.8.3",
"jsr": "^0.13.5",
"mermaid": "^11.12.0",
"oxlint": "^1.2.0",
"prettier": "^3.5.3",
"publint": "^0.3.12",
"tinybench": "^4.0.1",
"vitepress": "^2.0.0-alpha.12",
"vitepress-plugin-mermaid": "^2.0.17",
"zod": "^4.1.11"
},
"peerDependencies": {
"@types/bun": "*"
},
"peerDependenciesMeta": {
"@types/bun": {
"optional": true
}
}
}