This repository has been archived by the owner on Jul 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.74 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
{
"name": "squid",
"version": "0.3.1-canary",
"description": "The extendible Shell and SSH terminal, with E2E encryption in the cloud.",
"author": {
"email": "[email protected]",
"name": "QuiiBz",
"url": "https://github.com/QuiiBz"
},
"license": "MIT",
"repository": "https://github.com/squidjs/terminal",
"scripts": {
"dev": "electron-webpack dev",
"compile": "yarn setupIcon && yarn dist:cli && cross-env NODE_ENV=production electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:win": "yarn compile && electron-builder -w -p onTagOrDraft",
"dist:mac": "yarn compile && electron-builder -m -p onTagOrDraft",
"dist:linux": "yarn compile && electron-builder -l -p onTagOrDraft",
"dist:cli": "cd cli && yarn dist",
"rebuild": "electron-rebuild",
"rebuild:arm64": "electron-rebuild -a arm64",
"test": "yarn lint && yarn unit",
"lint": "eslint . --ext .ts,.tsx",
"unit": "jest",
"unit:watch": "jest --watch",
"setupIcon": "node scripts/setupIcon.js",
"colortest": "yarn colortest:256 && yarn colortest:true",
"colortest:256": "sh scripts/colortest/256.sh",
"colortest:true": "sh scripts/colortest/truecolor.sh",
"postinstall": "husky install"
},
"dependencies": {
"electron-updater": "^4.3.5",
"electron-window-state": "^5.0.3",
"font-finder": "^1.1.0",
"font-ligatures": "^1.4.0",
"keytar": "^7.2.0",
"node-pty": "^0.10.0",
"node-watch": "^0.7.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"source-map-support": "^0.5.19",
"ssh2": "^0.8.9",
"sudo-prompt": "^9.2.1",
"v8-compile-cache": "^2.2.0",
"xterm": "^4.12.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-unicode11": "^0.2.0",
"xterm-addon-web-links": "^0.4.0",
"xterm-addon-webgl": "^0.11.0"
},
"devDependencies": {
"@babel/preset-react": "^7.12.10",
"@types/jest": "^26.0.20",
"@types/keytar": "^4.4.2",
"@types/node": "^14.14.35",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/ssh2": "^0.5.46",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"copy-dir": "^1.3.0",
"cross-env": "^7.0.3",
"electron": "^11.2.3",
"electron-builder": "^22.10.5",
"electron-rebuild": "^2.3.5",
"electron-webpack": "^2.8.2",
"electron-webpack-ts": "^4.0.1",
"eslint": "^7.16.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-tsdoc": "^0.2.10",
"eslint-plugin-unused-imports": "^1.0.1",
"husky": "^5.0.6",
"jest": "^26.6.3",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3",
"webpack": "~4.42.1"
},
"optionalDependencies": {
"native-reg": "^0.3.4"
}
}