-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "@zenstackhq/trpc",
"displayName": "ZenStack plugin for tRPC",
"version": "2.20.0",
"description": "ZenStack plugin for tRPC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/zenstackhq/zenstack"
},
"scripts": {
"clean": "rimraf dist",
"build": "pnpm lint --max-warnings=0 && pnpm clean && tsc && copyfiles ./package.json ./README.md ./LICENSE \"res/**/*\" 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": [
"trpc"
],
"author": "ZenStack Team",
"license": "MIT",
"dependencies": {
"@zenstackhq/runtime": "workspace:*",
"@zenstackhq/sdk": "workspace:*",
"ts-morph": "catalog:",
"tslib": "^2.4.1"
},
"peerDependencies": {
"zod": "catalog:"
},
"devDependencies": {
"@trpc/next": "^10.32.0",
"@trpc/react-query": "^10.32.0",
"@trpc/server": "^10.32.0",
"@types/prettier": "^2.7.2",
"@types/tmp": "^0.2.3",
"@zenstackhq/testtools": "workspace:*",
"next": "14.2.4",
"tmp": "^0.2.3"
}
}