-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·37 lines (37 loc) · 1.13 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": "keyframes",
"productName": "Keyframes",
"version": "0.2.0",
"description": "A macOS electron wrapper for https://keyframes.net/.",
"license": "MIT",
"repository": "jdsimcoe/keyframes",
"author": {
"name": "Jonathan Simcoe",
"url": "https://jdsimcoe.com"
},
"scripts": {
"test": "xo",
"start": "electron .",
"build": "npm run build:macos",
"build:macos": "electron-packager . --overwrite --asar --out=dist --ignore='^media$' --prune --platform=darwin --arch=x64 --icon=static/Icon.icns --app-bundle-id=com.jdsimcoe.keyframes --sign='Developer ID Application: Sindre Sorhus (YG56YK5RN5)' --app-version=$npm_package_version && cd dist/Keyframes-darwin-x64 && zip -ryXq9 ../Keyframes-osx-${npm_package_version}.zip Keyframes.app"
},
"dependencies": {
"electron-config": "^0.2.1",
"electron-context-menu": "^0.6.0",
"electron-debug": "^1.0.0",
"electron-dl": "^1.0.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"electron": "^2.0.7",
"electron-packager": "^12.1.1",
"xo": "*"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
}
}