-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.3 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
{
"name": "lognotes-electron",
"version": "0.1.0",
"description": "LogNotes — local speech-to-text dictation: push-to-talk, Whisper transcription, paste at cursor.",
"author": "LogNotes",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"license": "MIT",
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^24.13.3",
"rcedit": "^5.0.2"
},
"build": {
"appId": "com.lognotes.app",
"productName": "LogNotes",
"compression": "store",
"directories": {
"output": "../dist-electron"
},
"files": [
"main.js",
"preload.js",
"renderer/**/*"
],
"extraResources": [
{
"from": "../dist/LogNotes",
"to": "sidecar"
},
{
"from": "../src/ui/assets/logo.ico",
"to": "assets/logo.ico"
},
{
"from": "../src/ui/assets/logo.png",
"to": "assets/logo.png"
}
],
"win": {
"target": "nsis",
"icon": "../src/ui/assets/logo.ico",
"signAndEditExecutable": false
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "LogNotes"
}
}
}