-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 2.25 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
{
"name": "skugo",
"version": "1.0.13",
"description": "Generate a unique shareable link and remote into a machine via web interface (SSH)",
"bin": "./bin/skugo",
"scripts": {
"build-client": "cd client && npm install --no-progress && eslint src/*{js,ts} && rm -rf ./bin && webpack --mode production",
"start-client": "cd client && node --max_old_space_size=8192 ../node_modules/.bin/webpack-dev-server --mode development --open --hot",
"build-host": "cd host && npm install --no-progress && eslint src/*{js,ts} && rm -rf ./bin && tsc",
"start-host": "npm run build-host && NODE_ENV=dev node ./host/main.js",
"package-host": "npm run build-host && rm -rf ./bin && pkg --target node10 --output bin/skugo ./host/main.js && cp host/node_modules/node-pty/build/Release/pty.node bin",
"build-relay": "cd relay && npm install --no-progress && eslint src/*{js,ts} && rm -rf ./bin && tsc",
"start-relay": "npm run build-relay && cd relay && docker build -t relay . && docker run --rm -p 80:80 relay",
"deploy-relay": "npm run build-relay && cd relay && openode deploy",
"build-all": "npm run build-client && npm run build-host && npm run package-host && npm run build-relay",
"release-linux-x64": "cd bin && tar -cJf skugo-linux-x64.tar.xz skugo pty.node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrevorSundberg/skugo.git"
},
"keywords": [
"ssh",
"remote",
"web"
],
"author": "Trevor Sundberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/TrevorSundberg/skugo/issues"
},
"homepage": "https://github.com/TrevorSundberg/skugo#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"favicons-webpack-plugin": "^1.0.2",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"openode": "^2.0.14",
"pkg": "^4.4.2",
"raw-loader": "^4.0.0",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"dependencies": {
"@types/crypto-js": "^3.1.43",
"crypto-js": "^3.1.9-1"
}
}