forked from elements-storage/ZXPInstaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.58 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
{
"name": "zxpinstaller",
"version": "1.6.3",
"description": "An open source Adobe extension installer",
"main": "index.js",
"priave": true,
"dependencies": {
"electron-packager": "^4.2.0",
"electron-prebuilt": "^0.25.3",
"electron-builder": "^1.1.0"
},
"scripts": {
"dev": "./node_modules/.bin/electron ./app",
"clean": "rm -rf ./release",
"clean:osx": "rm -rf ./release/osx",
"clean:win": "rm -rf ./release/win",
"build": "npm run clean && npm run build:osx && npm run build:win",
"build:osx": "npm run clean:osx && ./node_modules/.bin/electron-packager ./app \"ZXPInstaller\" --out=release/osx --platform=darwin --arch=x64 --version=0.25.3 --icon=assets/osx/icon.icns",
"build:win": "npm run clean:win && ./node_modules/.bin/electron-packager ./app \"ZXPInstaller\" --out=release/win --platform=win32 --arch=ia32 --version=0.25.3 --icon=assets/win/icon.ico",
"pack": "npm run pack:osx && npm run pack:win",
"pack:osx": "npm run build:osx && ./node_modules/.bin/electron-builder \"release/osx/ZXPInstaller.app\" --platform=macos --out=\"release/osx\" --config=packager.json",
"pack:win": "npm run build:win && ./node_modules/.bin/electron-builder \"release/win/ZXPInstaller-win32\" --platform=win --out=\"release/win\" --config=packager.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CreativeDo/ZXPInstaller.git"
},
"author": "CreativeDo",
"license": "ISC",
"bugs": {
"url": "https://github.com/CreativeDo/ZXPInstaller/issues"
},
"homepage": "https://github.com/CreativeDo/ZXPInstaller#readme"
}