generated from kui-shell/KuiClientTemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 2.75 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@guidebooks/playground",
"version": "1.0.0",
"description": "",
"main": "node_modules/@kui-shell/core/dist/main/main.js",
"scripts": {
"watch:source": "tsc --build . --watch",
"compile": "npx tsc --build . && npx kui-babel && npx kui-prescan",
"compile:clean": "tsc --build tsconfig.json --clean",
"kill": "npm run kill:proxy; kill $(lsof -t -i:908${PORT_OFFSET-0}) > /dev/null 2> /dev/null || true",
"_watch": "bash -c \"npm run kill; export CSP_ALLOWED_HOSTS='http: https: data: filesystem: about: blob: ws: wss:'; kui-watch-webpack\"",
"watch:webpack": "bash -c \"npm run pty:nodejs && (npm run proxy &); npm run _watch $WATCH_ARGS\"",
"watch:electron": "bash -c \"npm run pty:electron && TARGET=electron-renderer npm run _watch\"",
"watch": "bash -c \"npm run kill; npm run compile && concurrently -n ES6,WEBPACK --kill-others 'npm run watch:source' 'npm run watch:electron'\"",
"proxy": "export PORT=8081; export KUI_USE_HTTP=true; npm run pty:nodejs && npx kui-run-proxy",
"kill:proxy": "kill $(lsof -t -i:808${PORT_OFFSET-1}) > /dev/null 2> /dev/null || true",
"pty:rebuild": "kui-pty-rebuild",
"pty:electron": "npm run pty:rebuild electron",
"pty:nodejs": "npm run pty:rebuild node",
"build:electron:mac": "PLATFORM=mac kui-build-electron",
"build:electron:osx": "npm run build:electron:mac",
"build:electron:linux": "PLATFORM=linux kui-build-electron",
"build:electron:win32": "PLATFORM=win32 kui-build-electron",
"build:electron:windows": "PLATFORM=win32 kui-build-electron",
"build:electron:all": "kui-build-electron",
"build": "npm run compile && webpack --mode production",
"postinstall": "npm run compile",
"open": "electron . shell",
"start": "WATCH_ARGS='-open' npm run watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "@starpit",
"license": "Apache-2.0",
"devDependencies": {
"@kui-shell/builder": "^11.4.1",
"@kui-shell/proxy": "^11.4.1",
"@kui-shell/react": "^11.4.1",
"@kui-shell/webpack": "^11.4.1",
"@types/node": "14.11.8",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"concurrently": "7.0.0",
"electron": "16.0.4",
"typescript": "4.5.5"
},
"dependencies": {
"@kui-shell/client": "file:./plugins/plugin-client-offline",
"@kui-shell/core": "^11.4.1",
"@kui-shell/plugin-bash-like": "^11.4.1",
"@kui-shell/plugin-carbon-themes": "^11.4.1",
"@kui-shell/plugin-client-common": "^11.4.1",
"@kui-shell/plugin-core-support": "^11.4.1",
"@kui-shell/plugin-core-themes": "^11.4.1",
"@kui-shell/plugin-example": "file:./plugins/plugin-example",
"@kui-shell/plugin-kubectl": "^11.4.1",
"@kui-shell/plugin-patternfly4-themes": "^11.4.1"
}
}