-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.57 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.57 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
{
"name": "@zenstackhq/server",
"version": "2.22.2",
"displayName": "ZenStack Server-side Adapters",
"description": "ZenStack server-side adapters",
"homepage": "https://zenstack.dev",
"scripts": {
"clean": "rimraf dist",
"build": "pnpm lint --max-warnings=0 && pnpm clean && tsc && copyfiles ./package.json ./README.md ./LICENSE dist && pnpm pack dist --pack-destination ../../../.build",
"watch": "tsc --watch",
"lint": "eslint src --ext ts",
"test": "jest",
"prepublishOnly": "pnpm build"
},
"publishConfig": {
"directory": "dist",
"linkDirectory": true
},
"keywords": [
"fastify",
"express",
"nextjs",
"sveltekit",
"nuxtjs",
"elysia",
"tanstack-start"
],
"author": "ZenStack Team",
"license": "MIT",
"dependencies": {
"@zenstackhq/runtime": "workspace:*",
"decimal.js": "^10.4.2",
"superjson": "^1.13.0",
"ts-japi": "^1.12.1",
"url-pattern": "^1.0.3"
},
"peerDependencies": {
"zod": "catalog:"
},
"devDependencies": {
"@nestjs/common": "^10.3.7",
"@nestjs/platform-express": "^10.3.7",
"@nestjs/testing": "^10.3.7",
"@sveltejs/kit": "1.21.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/supertest": "^2.0.12",
"@zenstackhq/testtools": "workspace:*",
"body-parser": "^1.20.2",
"elysia": "^1.3.1",
"express": "^4.19.2",
"fastify": "^4.14.1",
"fastify-plugin": "^4.5.0",
"h3": "^1.8.2",
"hono": "^4.6.3",
"isomorphic-fetch": "^3.0.0",
"next": "14.2.4",
"nuxt": "^3.7.4",
"reflect-metadata": "^0.2.2",
"supertest": "^6.3.3",
"zod": "^3.25.0"
},
"exports": {
"./package.json": "./package.json",
"./api": "./api/index.js",
"./api/rest": "./api/rest/index.js",
"./api/rpc": "./api/rpc/index.js",
"./express": "./express/index.js",
"./fastify": "./fastify/index.js",
"./next/app-route-handler": "./next/app-route-handler.js",
"./next": "./next/index.js",
"./next/pages-route-handler": "./next/pages-route-handler.js",
"./sveltekit": "./sveltekit/index.js",
"./nuxt": "./nuxt/index.js",
"./nestjs": "./nestjs/index.js",
"./hono": "./hono/index.js",
"./elysia": "./elysia/index.js",
"./tanstack-start": "./tanstack-start/index.js",
"./types": "./types.js"
}
}