-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.1 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
{
"name": "devbook",
"version": "1.0.0",
"description": "DevBook — always-on-top daily work-notes capture with sprint summaries",
"author": "Tom Weston <tom@voly.com>",
"license": "UNLICENSED",
"private": true,
"main": "main.js",
"homepage": "https://github.com/westo27/devbook",
"repository": {
"type": "git",
"url": "https://github.com/westo27/devbook.git"
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --mac",
"release": "electron-builder --mac --publish always"
},
"build": {
"appId": "com.voly.devbook",
"productName": "DevBook",
"files": [
"main.js",
"preload.js",
"index.html",
"package.json"
],
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.productivity"
},
"dmg": {
"title": "DevBook ${version}"
},
"publish": {
"provider": "github",
"owner": "westo27",
"repo": "devbook"
}
},
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.1.8"
}
}