forked from zpv/keep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.75 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.75 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
{
"name": "keep",
"productName": "Keep",
"version": "0.1.5",
"description": "Desktop app for Google Keep packaged with Electron",
"electronVersion": "0.36.0",
"files": [
"*.js",
"assets"
],
"scripts": {
"start": "electron .",
"build": "npm run build:macos && npm run build:linux && npm run build:windows",
"build:macos": "electron-packager . --overwrite --asar --out=dist --ignore='^/dist$' --platform=darwin --arch=x64 --icon=assets/icon.icns --app-bundle-id=com.andrepolischuk.keep && cd dist/Keep-darwin-x64 && zip -ryXq9 ../Keep-macos-${npm_package_version}.zip Keep.app",
"build:linux": "electron-packager . --overwrite --out=dist --ignore='^/dist$' --platform=linux --arch=x64 --app-bundle-id=com.andrepolischuk.keep && cd dist/Keep-linux-x64 && zip -ryq9 ../Keep-linux-${npm_package_version}.zip *",
"build:windows": "electron-packager . --overwrite --asar --out=dist --ignore='^/dist$' --platform=win32 --arch=ia32 --icon=assets/icon.ico --version-string.ProductName=$npm_package_productName && cd dist/Keep-win32-ia32 && zip -ryq9 ../Keep-windows-${npm_package_version}.zip *",
"test": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrepolischuk/keep.git"
},
"keywords": [
"electron-app",
"electron",
"google",
"keep"
],
"author": "Andrey Polischuk <me@andrepolischuk.com> (https://andrepolischuk.com)",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/andrepolischuk/keep/issues"
},
"homepage": "https://github.com/andrepolischuk/keep",
"dependencies": {
"electron-config": "^1.0.0",
"electron-debug": "^1.0.1"
},
"devDependencies": {
"electron": "^1.4.4",
"electron-packager": "^9.1.0",
"standard": "^10.0.3"
}
}