-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1.02 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
{
"name": "GIFBar",
"productName": "GIFBar",
"version": "1.3.1",
"description": "A system tray icon that helps you find the perfect GIF",
"scripts": {
"start": "electron .",
"build": "electron-packager --platform=darwin --arch=x64 --icon=assets/Icon.icns --app-bundle-id=com.dcrousso.GIFBar --app-version=$npm_package_version --sign=\"Developer ID Application: Devin Rousso (Q5M4T22BE9)\" --overwrite --asar --out=dist --ignore=\"^/dist$\" --ignore=\"^/media$\" --prune ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcrousso/GIFBar.git"
},
"keywords": [
"GIF",
"GIFs",
"search"
],
"author": {
"name": "Devin Rousso",
"email": "[email protected]",
"url": "http://devinrousso.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dcrousso/GIFBar/issues"
},
"homepage": "https://github.com/dcrousso/GIFBar#readme",
"devDependencies": {
"electron": "^1.4.14",
"electron-packager": "^8.5.0"
},
"dependencies": {
"electron-debug": "^1.1.0",
"electron-dl": "^1.6.0"
}
}