-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.51 KB
/
package.json
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
{
"name": "zowe-native-proto",
"version": "1.0.0",
"private": true,
"scripts": {
"postinstall": "cd tools/build && npm install",
"build:tools": "cd tools/build && npm run build",
"build:types": "cd native/golang && go run github.com/gzuidhof/tygo generate && cd ../.. && npm run license",
"tools": "node tools/build/lib/main.js",
"tools:init": "npm run tools -- init",
"tools:artifacts": "npm run tools -- artifacts",
"tools:build": "npm run tools -- build",
"tools:deploy": "npm run tools -- deploy",
"tools:deploy:build": "npm run tools -- deploy:build",
"tools:all": "npm run tools:init && npm run tools:deploy:build",
"build": "npm run build --workspaces && npm run build:tools && npm run license",
"build:all": "npm run build:types && npm run build",
"clean": "npm run clean --workspaces",
"lint": "npm run lint --workspaces",
"license": "node scripts/updateLicenses.js",
"package": "npm run package --workspaces --if-present",
"prepare": "husky",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm run watch:native & npm run watch:client",
"watch:client": "npm run watch --workspaces",
"watch:native": "node scripts/watchNative.js"
},
"keywords": [],
"author": "",
"license": "EPL-2.0",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@zowe/secrets-for-zowe-sdk": "^8.10.4",
"chokidar": "^3",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"tsx": "^4.19.2"
}
}