electerm 1.25.30 → 1.25.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +142 -7
package/package.json
CHANGED
|
@@ -1,12 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "electerm",
|
|
3
|
-
"version": "1.25.
|
|
3
|
+
"version": "1.25.50",
|
|
4
4
|
"description": "Terminal/ssh/telnet/serialport/sftp client(linux, mac, win)",
|
|
5
5
|
"main": "app.js",
|
|
6
6
|
"bin": "npm/electerm",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"
|
|
9
|
-
"
|
|
8
|
+
"app": "node bin/app",
|
|
9
|
+
"build": "node bin/webpack-build",
|
|
10
|
+
"start": "./node_modules/.bin/webpack serve -c build/webpack.config.js",
|
|
11
|
+
"icon": "node bin/icon",
|
|
12
|
+
"ver": "node bin/generate-version",
|
|
13
|
+
"clean": "node bin/clean",
|
|
14
|
+
"compile": "node bin/build",
|
|
15
|
+
"local-test": "LOCAL_TEST=1 npm run test",
|
|
16
|
+
"prepublishOnly": "node bin/prepublish",
|
|
17
|
+
"postpublish": "node bin/postpublish",
|
|
18
|
+
"prepare-file": "node bin/prepare",
|
|
19
|
+
"output": "./node_modules/.bin/electron-builder",
|
|
20
|
+
"build-mac": "node bin/build-mac",
|
|
21
|
+
"build-mac-arm": "node bin/build-mac-arm",
|
|
22
|
+
"build-linux-1": "node bin/build-linux-1",
|
|
23
|
+
"build-linux-2": "node bin/build-linux-2",
|
|
24
|
+
"build-win-1": "node bin/build-win-1",
|
|
25
|
+
"build-win-2": "node bin/build-win-2",
|
|
26
|
+
"release": "npm run pre-test && npm run output",
|
|
27
|
+
"install": "node bin/install",
|
|
28
|
+
"postinstall": "node bin/post-install",
|
|
29
|
+
"lint": "./node_modules/.bin/standard --verbose | snazzy",
|
|
30
|
+
"fix": "./node_modules/.bin/standard --fix",
|
|
31
|
+
"test": "npm run test1 && npm run test2",
|
|
32
|
+
"test1": "./node_modules/.bin/playwright test test/e2e/00*.js --workers=1",
|
|
33
|
+
"test2": "./node_modules/.bin/playwright test test/e2e/01*.js --workers=1",
|
|
34
|
+
"pre-test": "npm run compile && npm run prepare-file",
|
|
35
|
+
"lock": "npm i --package-lock-only"
|
|
10
36
|
},
|
|
11
37
|
"license": "MIT",
|
|
12
38
|
"langugeRepo": "https://github.com/electerm/electerm-locales",
|
|
@@ -30,10 +56,119 @@
|
|
|
30
56
|
"node": ">=16.0.0"
|
|
31
57
|
},
|
|
32
58
|
"preferGlobal": true,
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@ant-design/icons": "4.8.0",
|
|
61
|
+
"@babel/cli": "7.15.7",
|
|
62
|
+
"@babel/core": "7.15.8",
|
|
63
|
+
"@babel/plugin-proposal-class-properties": "7.14.5",
|
|
64
|
+
"@babel/plugin-proposal-decorators": "7.15.8",
|
|
65
|
+
"@babel/plugin-syntax-dynamic-import": "7.8.3",
|
|
66
|
+
"@babel/plugin-transform-runtime": "7.15.8",
|
|
67
|
+
"@babel/preset-env": "7.15.8",
|
|
68
|
+
"@babel/preset-react": "7.14.5",
|
|
69
|
+
"@babel/register": "7.15.3",
|
|
70
|
+
"@babel/runtime": "7.15.4",
|
|
71
|
+
"@electerm/antd-dayjs-webpack-plugin": "1.0.7",
|
|
72
|
+
"@electerm/electerm-resource": "1.3.7",
|
|
73
|
+
"@electerm/pug-html-loader": "^1.1.6",
|
|
74
|
+
"@electron/rebuild": "3.2.10",
|
|
75
|
+
"@playwright/test": "1.28.1",
|
|
76
|
+
"@tylerlong/use-proxy": "1.2.8",
|
|
77
|
+
"antd": "4.24.4",
|
|
78
|
+
"apply-loader": "2.0.0",
|
|
79
|
+
"babel-eslint": "10.1.0",
|
|
80
|
+
"babel-loader": "8.2.2",
|
|
81
|
+
"babel-plugin-import": "1.13.3",
|
|
82
|
+
"babel-plugin-syntax-dynamic-import": "6.18.0",
|
|
83
|
+
"babel-plugin-transform-runtime": "6.23.0",
|
|
84
|
+
"badges": "4.24.0",
|
|
85
|
+
"chai": "4.3.4",
|
|
86
|
+
"classnames": "2.3.1",
|
|
87
|
+
"concat-loader": "0.1.0",
|
|
88
|
+
"copy-webpack-plugin": "9.0.1",
|
|
89
|
+
"cross-env": "7.0.3",
|
|
90
|
+
"css-loader": "6.6.0",
|
|
91
|
+
"css-minimizer-webpack-plugin": "3.0.2",
|
|
92
|
+
"dayjs": "1.10.5",
|
|
93
|
+
"dotenv": "10.0.0",
|
|
94
|
+
"electron": "18.3.15",
|
|
95
|
+
"electron-builder": "23.6.0",
|
|
96
|
+
"extract-loader": "5.1.0",
|
|
97
|
+
"file-loader": "6.2.0",
|
|
98
|
+
"filesize": "6.4.0",
|
|
99
|
+
"filesize-parser": "1.5.0",
|
|
100
|
+
"glob": "7.1.7",
|
|
101
|
+
"html-loader": "2.1.2",
|
|
102
|
+
"less-loader": "10.0.1",
|
|
103
|
+
"memoize-one": "5.2.1",
|
|
104
|
+
"mini-css-extract-plugin": "2.0.0",
|
|
105
|
+
"playwright": "^1.28.1",
|
|
106
|
+
"png2icons": "2.0.1",
|
|
107
|
+
"prop-types": "15.7.2",
|
|
108
|
+
"react": "17.0.2",
|
|
109
|
+
"react-delta": "^1.1.2",
|
|
110
|
+
"react-dom": "17.0.2",
|
|
111
|
+
"replace-in-file": "6.2.0",
|
|
112
|
+
"shelljs": "0.8.5",
|
|
113
|
+
"snazzy": "9.0.0",
|
|
114
|
+
"standard": "^13.1.0",
|
|
115
|
+
"style-loader": "3.0.0",
|
|
116
|
+
"stylus-loader": "6.1.0",
|
|
117
|
+
"url-loader": "4.1.1",
|
|
118
|
+
"useragent": "2.3.0",
|
|
119
|
+
"vscode-icons": "vscode-icons/vscode-icons",
|
|
120
|
+
"vscode-icons-js": "11.1.0",
|
|
121
|
+
"webpack": "5.75.0",
|
|
122
|
+
"webpack-cli": "5.0.0",
|
|
123
|
+
"webpack-dev-server": "4.11.1",
|
|
124
|
+
"xterm": "5.1.0",
|
|
125
|
+
"xterm-addon-attach": "0.7.0",
|
|
126
|
+
"xterm-addon-canvas": "0.3.0",
|
|
127
|
+
"xterm-addon-fit": "0.7.0",
|
|
128
|
+
"xterm-addon-ligatures": "0.6.0",
|
|
129
|
+
"xterm-addon-search": "0.11.0",
|
|
130
|
+
"xterm-addon-serialize": "0.9.0",
|
|
131
|
+
"xterm-addon-unicode11": "0.5.0",
|
|
132
|
+
"xterm-addon-web-links": "0.8.0",
|
|
133
|
+
"xterm-addon-webgl": "0.14.0",
|
|
134
|
+
"zmodem.js": "0.1.10"
|
|
135
|
+
},
|
|
33
136
|
"dependencies": {
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
137
|
+
"@electerm/electerm-locales": "0.16.6",
|
|
138
|
+
"@electerm/ssh2": "1.11.2",
|
|
139
|
+
"@electerm/strip-ansi": "^1.0.0",
|
|
140
|
+
"@yetzt/nedb": "1.8.0",
|
|
141
|
+
"axios": "0.26.0",
|
|
142
|
+
"body-parser": "1.19.0",
|
|
143
|
+
"commander": "8.0.0",
|
|
144
|
+
"cors": "2.8.5",
|
|
145
|
+
"electron-log": "4.3.5",
|
|
146
|
+
"express": "^5.0.0-beta.1",
|
|
147
|
+
"express-ws": "5.0.2",
|
|
148
|
+
"fast-deep-equal": "3.1.3",
|
|
149
|
+
"find-free-port": "2.0.0",
|
|
150
|
+
"font-list": "1.3.1",
|
|
151
|
+
"gist-wrapper": "0.4.1",
|
|
152
|
+
"gitee-client": "0.2.0",
|
|
153
|
+
"https-proxy-agent": "5.0.0",
|
|
154
|
+
"json-deep-copy": "1.1.6",
|
|
155
|
+
"less": "4.1.1",
|
|
156
|
+
"lodash": "4.17.21",
|
|
157
|
+
"nanoid": "3.1.31",
|
|
158
|
+
"node-bash": "5.0.1",
|
|
159
|
+
"node-powershell": "5.0.1",
|
|
160
|
+
"node-pty": "0.11.0-beta19",
|
|
161
|
+
"os-locale-s": "1.0.8",
|
|
162
|
+
"serialport": "10.4.0",
|
|
163
|
+
"socks": "2.6.1",
|
|
164
|
+
"socks-proxy-agent": "6.0.0",
|
|
165
|
+
"ssh-config": "4.0.6",
|
|
166
|
+
"stylus": "0.54.8",
|
|
167
|
+
"tar": "^6.1.9",
|
|
168
|
+
"telnet-client": "^2.0.6",
|
|
169
|
+
"trzsz": "1.0.0",
|
|
170
|
+
"util-promisifyall": "1.0.6",
|
|
171
|
+
"v8-compile-cache": "2.3.0"
|
|
37
172
|
},
|
|
38
173
|
"files": [
|
|
39
174
|
"npm",
|
|
@@ -55,4 +190,4 @@
|
|
|
55
190
|
"self"
|
|
56
191
|
]
|
|
57
192
|
}
|
|
58
|
-
}
|
|
193
|
+
}
|