-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 918 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 918 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
{
"name": "pine-notes",
"version": "1.0.0",
"description": "极简 Markdown 笔记",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --win portable",
"build:portable": "electron-builder --win portable",
"icon": "electron generate-icon.js"
},
"build": {
"appId": "com.pinenotes.app",
"productName": "Pine Notes",
"win": {
"target": "portable",
"icon": "icon.ico",
"signAndEditExecutable": false
},
"portable": {
"artifactName": "PineNotes-Portable-${version}.exe"
},
"files": [
"main.js",
"preload.js",
"renderer.js",
"index.html",
"icon.png",
"icon.ico",
"node_modules/marked/**/*"
]
},
"devDependencies": {
"electron": "^35.0.0",
"electron-builder": "^25.1.8",
"png-to-ico": "^3.0.1"
},
"dependencies": {
"marked": "^17.0.5"
}
}