-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "pretzel",
"productName": "Pretzel",
"version": "0.6.4",
"description": "a contextual shortcuts finder",
"author": "Amie Chen",
"main": "index.js",
"scripts": {
"start": "electron .",
"package": "build",
"publish": "build -p always",
"build:mac": "electron-packager . Pretzel --platform=darwin --arch=x64 --asar --icon='./build/icon.icns' --osx-sign",
"build:win": "electron-packager . Pretzel --platform=win32 --arch=x64 --asar --icon=icon.ico",
"build:linux": "electron-packager . Pretzel --platform=linux --arch=x64 --asar --icon=icon.ico"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amiechen/pretzel.git"
},
"keywords": [
"shortcuts"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/amiechen/pretzel/issues"
},
"homepage": "https://github.com/amiechen/pretzel#readme",
"dependencies": {
"electron-settings": "^3.2.0",
"electron-updater": "^4.0.6",
"js-yaml": "^3.11.0",
"menubar": "^5.2.3",
"objc": "^0.12.0",
"string-similarity": "^1.2.2"
},
"devDependencies": {
"electron": "^1.8.8",
"electron-builder": "^20.39.0"
},
"build": {
"appId": "com.Hyperyolo.Pretzel",
"files": [
"**/*",
"!screenshot/${/*}",
"!docs${/*}"
],
"copyright": "Copyright © Amie Chen"
}
}