-
-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 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
{
"name": "@zenstackhq/sdk",
"version": "2.22.2",
"description": "ZenStack plugin development SDK",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src --ext ts",
"build": "pnpm lint --max-warnings=0 && pnpm clean && tsc && copyfiles ./package.json ./LICENSE ./README.md dist && pnpm pack dist --pack-destination ../../../.build",
"watch": "tsc --watch",
"prepublishOnly": "pnpm build"
},
"publishConfig": {
"directory": "dist",
"linkDirectory": true
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@prisma/generator-helper": "6.19.x",
"@prisma/internals": "6.19.x",
"@zenstackhq/language": "workspace:*",
"@zenstackhq/runtime": "workspace:*",
"langium": "1.3.1",
"semver": "^7.5.2",
"ts-morph": "catalog:",
"ts-pattern": "^4.3.0"
},
"devDependencies": {
"@types/semver": "^7.3.13"
},
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./ast": {
"types": "./ast.d.ts",
"default": "./ast.js"
},
"./prisma": {
"types": "./prisma.d.ts",
"default": "./prisma.js"
},
"./dmmf-helpers": {
"types": "./dmmf-helpers/index.d.ts",
"default": "./dmmf-helpers/index.js"
},
"./package.json": "./package.json"
}
}