-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1022 Bytes
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 1022 Bytes
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
{
"name": "Terminaltor",
"version": "1.3.0",
"description": "Terminal inspired by Fallout",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"author": "Nicolas VINCENT",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^19.0.8",
"electron-builder": "^23.1.0",
"electron-rebuild": "^3.2.8"
},
"dependencies": {
"@electron/asar": "github:electron/asar",
"node-gyp": "^9.0.0",
"serialport": "^10.4.0",
"sqlite3": "^5.1.2"
},
"build": {
"appId": "terminaltor",
"win": {
"target": [
"nsis"
],
"icon": "icon.ico"
},
"nsis": {
"oneClick": false,
"installerIcon": "icon.ico",
"uninstallerIcon": "icon.ico",
"uninstallDisplayName": "terminaltor-uninstaller",
"allowToChangeInstallationDirectory": true,
"license": "LICENSE.md"
},
"extraResources": [
"fichiers",
"params"
]
}
}