-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.87 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "webterm",
"version": "1.0.2",
"description": "A terminal that runs on a browser engine.",
"main": "src/main.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"electron-rebuild": "node_modules/.bin/electron-rebuild.cmd",
"build-win": "node_modules/.bin/electron-builder --win --x64",
"build-appx": "electron-builder -w --x64 && electron-windows-store --input-directory .\\dist\\win-unpacked --output-directory .\\dist --package-name WebTerm --package-display-name WebTerm --package-version 1.0.1.0 --publisher-display-name Lhaplu:Log --identity-name 36443LhapluLog.WebTerm",
"build-linux": "node_modules/.bin/electron-builder --linux --x64",
"build-mac": "node_modules/.bin/electron-builder --mac --x64",
"webpack": "webpack && javascript-obfuscator src/main.js --output src/main.min.js"
},
"keywords": [],
"author": "Yamazaki Ryuki",
"license": "ISC",
"devDependencies": {
"ansi-colors": "^4.1.1",
"css-loader": "^6.3.0",
"electron": "^13.1.1",
"electron-builder": "^22.10.5",
"electron-rebuild": "^2.3.5",
"electron-tools": "^2.4.2",
"electron-windows-store": "^2.1.0",
"html-minifier": "^4.0.0",
"javascript-obfuscator": "^2.19.0",
"node-loader": "^2.0.0",
"sass": "^1.41.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-obfuscator": "^3.4.1",
"xterm": "^4.14.1",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-web-links": "^0.4.0"
},
"dependencies": {
"electron-store": "^8.0.0",
"ffi-napi": "^4.0.3",
"iconv-lite": "^0.6.3",
"node-pty": "^0.10.1",
"ref-wchar-napi": "^1.0.3",
"sequelize": "^6.6.5",
"sqlite3": "^5.0.2",
"ssh2": "^1.4.0"
},
"build": {
"productName": "WebTerm",
"appId": "com.electron.ssh-client",
"compression": "maximum",
"asar": true,
"directories": {
"output": "dist",
"buildResources": "assets"
},
"files": [
"!src",
"!package.json",
"src/js/bundle.js",
"src/index.html",
"src/30ac0ac10cb239a9c3b9.otf",
"src/68c5af1f48e2bfca1e57.woff2",
"src/ada6e6df937f7e5e8b79.woff2",
"src/main.min.js",
"src/dom"
],
"extraFiles": [
"nvdaControl.dll",
"PCTKUSR.dll"
],
"appx": {
"identityName": "36443LhapluLog.WebTerm",
"applicationId": "LhapluLog.WebTerm",
"publisherDisplayName": "Lhaplu:Log",
"publisher": "CN=CEBD1DA5-A40A-4B88-9D6B-86B3FE07C8B4",
"languages": [
"JA-JP"
]
},
"mac": {
"target": "dmg"
},
"win": {
"target": [
"nsis"
],
"icon": "assets/app-icon.ico"
},
"linux": {
"target": "AppImage"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}