forked from evolus/pencil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.41 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "Pencil",
"devDependencies": {
"electron": "6.0.1",
"electron-builder": "20.28.4",
"electron-rebuild": "^1.8.5",
"rimraf": "^2.5.4"
},
"build": {
"appId": "vn.evolus.pencil",
"productName": "Pencil",
"copyright": "Copyright © 2008-2016 Evolus. All rights reserved.",
"mac": {
"category": "public.app-category.graphics-design"
},
"dmg": {
"contents": [
{
"x": 356,
"y": 140,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 145,
"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 <ngtdungnt@gmail.com>",
"vendor": "Evolus",
"target": [
"deb",
"rpm",
"tar.gz"
],
"depends": [],
"category": "Graphics",
"packageCategory": "graphics"
},
"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.",
"iconUrl": "https://raw.githubusercontent.com/evolus/pencil/master/build/icon.ico",
"target": "nsis"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
},
"electronDownload": {
"cache": ".electron-cache"
},
"fileAssociations": {
"ext": [
"ep",
"epz",
"epgz"
],
"name": "Pencil Document"
}
},
"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 --enable-transparent-visuals --disable-gpu",
"start:mac": "./node_modules/.bin/electron ./app --enable-dev",
"clean": "rimraf dist",
"pack": "build",
"dist": "build",
"release": "build",
"dist:linux": "./node_modules/.bin/build --linux --ia32 --x64",
"dist:win32": "./node_modules/.bin/build --windows --ia32 --x64",
"dist:osx": "./node_modules/.bin/build --macos"
},
"private": true
}