-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 997 Bytes
/
package.json
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
{
"name": "captainslog",
"version": "1.0.0",
"description": "An out of the way app for quickly logging ideas",
"main": "index.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"keywords": [],
"author": "Max Vinten",
"license": "ISC",
"devDependencies": {
"electron": "^29.1.2",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.maxv.captainslog",
"productName": "Captain's Log",
"win": {
"icon": "favicon.ico",
"target": "msi"
},
"mac": {
"icon": "icon.icns",
"target": [
"dmg",
"zip"
]
},
"files": [
"**/*",
"!**/*.ts",
"!*.code-workspace",
"!**/*.js.map",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin"
]
}
}