-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1021 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 1021 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
45
46
47
48
49
{
"name": "pace",
"version": "1.0.0",
"description": "Keep in pace with your words - High performance STT desktop app.",
"main": "main.js",
"build": {
"appId": "com.pace.app",
"productName": "Pace",
"directories": {
"output": "dist"
},
"win": {
"icon": "image.png",
"target": [
"nsis"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Pace",
"uninstallDisplayName": "Pace STT",
"deleteAppDataOnUninstall": false
},
"asar": true,
"asarUnpack": [
"engine.py",
"start.mp3",
"stop.mp3",
"image.png"
],
"files": [
"**/*",
"!dist",
"!models",
"!.git"
]
},
"scripts": {
"start": "electron .",
"build": "electron-builder --win"
},
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^24.13.3"
}
}