-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.96 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.96 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "serialterminal",
"version": "0.1.2",
"description": "A modern, cross-platform serial port terminal application built with Electron.",
"main": "main.js",
"scripts": {
"start": "electron .",
"rebuild": "electron-rebuild -f -w serialport,node-pty",
"dist": "electron-builder -c.npmRebuild=false",
"dist:win": "electron-builder --win -c.npmRebuild=false",
"dist:linux": "electron-builder --linux -c.npmRebuild=false",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.serialterminal.app",
"productName": "SerialTerminal",
"directories": {
"output": "dist"
},
"files": [
"!**/.vscode/*",
"!**/.idea/*",
"!**/*.ts",
"!**/*.map",
"package.json",
"**/*"
],
"publish": {
"provider": "github",
"releaseType": "release"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "assets/favicon.ico",
"requestedExecutionLevel": "asInvoker"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": true
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Development",
"icon": "assets/icon-512x512.png"
}
},
"keywords": [],
"author": {
"name": "Trigger-CN",
"email": "759025229@qq.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Trigger-CN/SerialTerminal.git"
},
"license": "ISC",
"devDependencies": {
"@electron/rebuild": "^3.6.0",
"electron": "^28.3.3",
"electron-builder": "^26.7.0"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/xterm": "^6.0.0",
"electron-log": "^5.4.3",
"electron-updater": "^6.7.3",
"font-list": "^2.0.2",
"iconv-lite": "^0.7.2",
"node-pty": "^1.1.0",
"serialport": "^13.0.0"
}
}