-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 3.64 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "http-shell",
"version": "0.1.0",
"description": "A CLI tool that provides developers with a modern alternative to HTTP clients for interacting with APIs.",
"homepage": "https://github.com/SoftInstigate/http-shell",
"keywords": [
"API",
"REST",
"HTTP",
"cli",
"shell"
],
"author": "Andrea Di Cesare ([email protected])",
"license": "Apache-2.0",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/SoftInstigate/http-shell/issues"
},
"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",
"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"
},
"devDependencies": {
"@kui-shell/builder": "9.3.3",
"@kui-shell/proxy": "9.3.3",
"@kui-shell/react": "9.3.3",
"@kui-shell/webpack": "9.3.3",
"@types/carbon-components-react": "7.10.11",
"@types/carbon__icons-react": "10.10.0",
"@types/node": "12.12.31",
"@types/react": "16.9.50",
"@types/react-dom": "16.9.8",
"concurrently": "5.3.0",
"css-loader": "3.6.0",
"electron": "7.3.3",
"file-loader": "6.0.0",
"font-config-webpack-plugin": "^2.0.0",
"html-loader": "1.1.0",
"html-webpack-plugin": "4.3.0",
"mini-css-extract-plugin": "0.9.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"sass": "1.26.9",
"sass-loader": "8.0.2",
"style-loader": "1.1.3",
"svg-inline-loader": "0.8.2",
"typescript": "4.0.3",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"dependencies": {
"@kui-shell/client": "file:./plugins/plugin-client-default",
"@kui-shell/core": "9.3.3",
"@kui-shell/plugin-bash-like": "9.3.3",
"@kui-shell/plugin-carbon-themes": "9.3.3",
"@kui-shell/plugin-client-common": "9.3.3",
"@kui-shell/plugin-core-support": "9.3.3",
"@kui-shell/plugin-electron-components": "9.3.3",
"@kui-shell/plugin-git": "9.3.3",
"@kui-shell/plugin-proxy-support": "9.3.3",
"@kui-shell/plugin-http-shell": "file:./plugins/plugin-http-shell",
"@types/superagent": "^4.1.10",
"superagent": "^6.1.0"
}
}