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