-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
43 lines (43 loc) · 1.49 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
{
"name": "zxpinstaller",
"version": "1.8.2",
"description": "An open source Creative Cloud extension installer",
"main": "index.js",
"priave": true,
"dependencies": {
"electron": "^15.3.1",
"electron-builder": "^22.13.1",
"electron-packager": "^15.4.0"
},
"scripts": {
"dev": "./node_modules/.bin/electron ./app",
"lint": "eslint app/src",
"clean": "rm -rf ./release",
"clean:mac-arm64": "rm -rf ./release/mac-arm64",
"clean:mac-x64": "rm -rf ./release/mac-x64",
"clean:win": "rm -rf ./release/win",
"postinstall": "cd app && yarn",
"pack": "npm run pack:mac-arm64 && npm run pack:win",
"pack:mac-arm64": "node hooks/ci-env-wrapper.cjs ./node_modules/.bin/electron-builder --macos --arm64",
"pack:mac-x64": "node hooks/ci-env-wrapper.cjs ./node_modules/.bin/electron-builder --macos --x64",
"pack:win": "node hooks/ci-env-wrapper.cjs cmd /c node_modules\\.bin\\electron-builder --win --x64"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elements-storage/ZXPInstaller.git"
},
"author": "ELEMENTS Media Storage",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/elements-storage/ZXPInstaller/issues"
},
"homepage": "https://github.com/elements-storage/ZXPInstaller#readme",
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1"
},
"type": "module"
}