-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.5 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
{
"name": "piping-ssh-web",
"version": "0.1.0-SNAPSHOT",
"private": true,
"description": "SSH over HTTPS via Piping Server",
"scripts": {
"serve": "npm run patch-golang-crypto && concurrently -r 'vue-cli-service serve' 'npm run build-wasm-watch'",
"patch-golang-crypto": "(cd go/golang-crypto && patch -p1 -N < ../golang-crypto.patch || true)",
"build-wasm": "(cd go && GOOS=js GOARCH=wasm go build -o ../public/main.wasm) && cp \"$(go env GOROOT)/misc/wasm/wasm_exec.js\" ./public",
"build-wasm-watch": "watch 'npm run build-wasm' go",
"build": "npm run patch-golang-crypto && npm run build-wasm && vue-cli-service build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nwtgck/piping-ssh-web.git"
},
"author": "Ryo Ota <[email protected]> (https://github.com/nwtgck)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nwtgck/piping-ssh-web/issues"
},
"homepage": "https://github.com/nwtgck/piping-ssh-web#readme",
"dependencies": {
"@vueuse/core": "^10.3.0",
"clipboard-copy": "^4.0.1",
"comlink": "^4.4.1",
"core-js": "^3.32.0",
"url-join": "^5.0.0",
"vue": "^3.2.13",
"vuetify": "^3.3.10",
"xterm": "^5.2.1",
"xterm-addon-fit": "^0.7.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@mdi/js": "^7.2.96",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"concurrently": "^8.2.0",
"typescript": "^5.2.2",
"watch": "^0.13.0"
}
}