forked from evolus/pencil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.83 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
55
56
57
58
59
60
{
"name": "Pencil",
"devDependencies": {
"electron-builder": "4.2.6",
"electron-prebuilt": "1.2.2",
"rimraf": "^2.5.2"
},
"build": {
"app-bundle-id": "vn.evolus.pencil",
"app-category-type": "public.app-category.graphics-design",
"iconUrl": "https://raw.githubusercontent.com/evolus/pencil/master/build/icon.ico",
"productName": "Pencil",
"osx": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"linux": {
"description": "An open-source GUI prototyping tool that is available for ALL platforms.",
"synopsis": "An open-source GUI prototyping tool that is available for ALL platforms.",
"maintainer": "Nguyen Tien Dzung <[email protected]>",
"vendor": "Evolus",
"target": ["deb", "rpm", "tar.gz"],
"depends": []
},
"win": {
"authors": "Evolus",
"owners": "Evolus",
"description": "An open-source GUI prototyping tool that is available for ALL platforms.",
"copyright": "Copyright © 2008-2016 Evolus. All rights reserved."
},
"download": {
"cache": ".electron-cache"
}
},
"scripts": {
"postinstall": "install-app-deps",
"install-app-deps": "node ./node_modules/electron-builder/out/install-app-deps.js",
"start": "./node_modules/.bin/electron ./app",
"start:dev": "./node_modules/.bin/electron ./app --enable-dev --disable-gpu",
"clean": "rimraf dist",
"pack": "build",
"dist": "build",
"release": "build",
"dist:linux": "./node_modules/.bin/build --linux --x64",
"dist:win32": "./node_modules/.bin/build --windows --x64",
"dist:darwin": "./node_modules/.bin/build --osx"
},
"private": true
}