-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.6 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "BlackHole",
"version": "1.0.1",
"description": "A simple journaling application that deletes everything you write.",
"main": "main.js",
"scripts": {
"postinstall": "install-app-deps",
"start": "npm install && electron .",
"pack": "build --dir",
"dist": "build",
"release": "bash scripts/publish.sh"
},
"repository": "/~https://github.com/ryderdamen/blackhole",
"keywords": [
"Journaling",
"BlackHole"
],
"author": "Ryder Damen <dev@ryderdamen.com>",
"license": "MIT",
"build": {
"appId": "com.ryderlabs.blackhole",
"dmg": {
"contents": [
{
"x": 100,
"y": 150
},
{
"x": 300,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
},
"mac": {
"category": "public.app-category.productivity",
"target": [
"pkg",
"dmg",
"zip",
"mas"
],
"entitlements": "build/entitlements.mac.plist",
"type": "distribution",
"icon": "build/icon.icns"
},
"mas": {
"entitlements": "build/entitlements.mas.plist",
"type": "distribution",
"category": "public.app-category.productivity",
"target": [
"pkg",
"dmg",
"zip",
"mas"
]
}
},
"dependencies": {
"electron-prompt": "^0.5.0"
},
"devDependencies": {
"electron": "^1.8.4",
"electron-builder": "^20.18.0"
}
}