forked from lineCode/openPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "open-ps",
"version": "1.0.0",
"main": "public/electron.js",
"author": {
"name": "Baiyuan Wang",
"url": "http://wangbaiyuan.cn",
"email": "[email protected]"
},
"description": "A Photoshop destop version based on Electron",
"repository": {
"type": "git",
"url": "https://github.com/geekeren/openPS.git"
},
"bugs": {
"url": "https://github.com/geekeren/openPS/issues"
},
"homepage": "./",
"dependencies": {
"pako": "^1.0.10",
"utif": "^3.1.0"
},
"devDependencies": {
"concurrently": "^4.1.1",
"electron": "^6.0.0",
"electron-builder": "^21.2.0",
"release-it": "^12.3.5",
"wait-on": "^3.3.0"
},
"scripts": {
"start": "electron .",
"electron-pack": "build -c.extraMetadata.main=public/electron.js",
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"dist:app": "rm -rf dist && electron-builder -mwl",
"dist:linux": "electron-builder --linux --ia32 --x64",
"dist:linux32": "electron-builder --linux --ia32",
"dist:linux64": "electron-builder --linux --x64",
"dist:win": "electron-builder --win --ia32 --x64",
"dist:win32": "electron-builder --win --ia32",
"dist:win64": "electron-builder --win --x64",
"dist:mac": "CSC_IDENTITY_AUTO_DISCOVERY=false DEBUG=electron-builder electron-builder --mac",
"dist": "yarn dist:app",
"release": "release-it --no-npm.publish"
},
"bin": {
"magpie": "./cli.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}