-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 952 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 952 Bytes
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
{
"name": "@zenstackhq/testtools",
"version": "2.22.2",
"description": "ZenStack Test Tools",
"main": "index.js",
"private": true,
"publishConfig": {
"directory": "dist",
"linkDirectory": true
},
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src --ext ts",
"build": "pnpm lint && pnpm clean && tsc && copyfiles ./package.json ./LICENSE ./README.md dist && pnpm pack dist --pack-destination ../../../.build",
"watch": "tsc --watch",
"prepublishOnly": "pnpm build"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@zenstackhq/language": "workspace:*",
"@zenstackhq/runtime": "workspace:*",
"@zenstackhq/sdk": "workspace:*",
"json5": "^2.2.3",
"langium": "1.3.1",
"pg": "^8.11.1",
"tmp": "^0.2.1",
"vscode-uri": "^3.0.6",
"zenstack": "workspace:*"
},
"devDependencies": {
"@types/pg": "^8.10.2",
"@types/tmp": "^0.2.3"
}
}