-
Notifications
You must be signed in to change notification settings - Fork 400
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.5 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.5 KB
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
{
"name": "sshwifty-ui",
"version": "0.0.0",
"description": "Sshwifty Web Front-end Project",
"main": "",
"type": "module",
"devDependencies": {
"@azurity/pure-nerd-font": "^3.0.5",
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/register": "^7.28.6",
"@babel/runtime": "^7.29.2",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"babel-loader": "^10.1.1",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^8.0.0",
"cwebp-bin": "^8.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vue": "^9.32.0",
"eslint-webpack-plugin": "^5.0.3",
"favicons": "^7.2.0",
"fontfaceobserver": "^2.3.0",
"globals": "^17.4.0",
"hack-font": "^3.3.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.6",
"iconv-lite": "^0.7.2",
"image-minimizer-webpack-plugin": "^5.0.0",
"mini-css-extract-plugin": "^2.10.1",
"mocha": "^11.7.5",
"node-addon-api": "^8.6.0",
"node-gyp": "^12.2.0",
"normalize.css": "^8.0.1",
"prettier": "^3.8.1",
"process": "^0.11.10",
"roboto-fontface": "^0.10.0",
"sharp": "^0.34.5",
"stream-browserify": "^3.0.0",
"style-loader": "^4.0.0",
"svgo": "^4.0.1",
"terser-webpack-plugin": "^5.4.0",
"vue": "^2.6.14",
"vue-loader": "^15.9.8",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2",
"webpack-favicons": "^1.5.43"
},
"scripts": {
"dev": "CGO_ENABLED=0 NODE_ENV=development webpack watch --mode=development --config=webpack.config.js",
"clean": "rm .tmp/ -rf || true",
"generate": "npm run clean && CGO_ENABLED=0 NODE_ENV=production webpack build --mode=production --config=webpack.config.js",
"build": "npm run generate && CGO_ENABLED=0 go build -ldflags \"-s -w -X github.com/nirui/sshwifty/application.version=$(git describe --always --dirty='*' --tag)\"",
"lint": "eslint --ext .js,.vue ui",
"testonly": "mocha --require @babel/register --recursive --timeout 3s ./ui/**/*_test.js && CGO_ENABLED=1 go test ./... -race -timeout 30s",
"test": "npm run generate && npm run testonly"
},
"author": "",
"license": "AGPL-3.0-only"
}