-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 929 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 929 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
{
"name": "gitnote-quick",
"version": "1.0.0",
"description": "A lightweight clipboard note app with GitHub sync.",
"main": "src/main.js",
"author": "",
"license": "MIT",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win"
},
"dependencies": {
"electron-store": "^8.2.0",
"simple-git": "^3.30.0"
},
"devDependencies": {
"electron": "^36.3.2",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.gitnote.quick",
"productName": "GitNote Quick",
"files": [
"src/**/*",
"package.json"
],
"mac": {
"target": [
"dmg"
]
},
"win": {
"icon": "build/icon.ico",
"target": [
"nsis"
]
},
"nsis": {
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico"
}
}
}