-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.02 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": "Cactus",
"version": "1.0.0",
"description": "Gaze Interaction Browser",
"main": "main.js",
"scripts": {
"start": "gulp mainCss && gulp webviewCss && gulp bookmarksCss && electron .",
"dist": "build"
},
"author": "Daniel Vella",
"license": "ISC",
"build": {
"appId": "cactus",
"asar": false,
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "squirrel",
"icon": "build/icon.ico"
}
},
"devDependencies": {
"electron": "^4.1.2",
"devtron": "^1.4.0",
"electron-builder": "^20.39.0",
"eslint": "^5.15.3",
"gulp": "^4.0.0",
"gulp-sass": "^4.0.2",
"node-sass": "^4.11.0"
},
"dependencies": {
"lodash": "^4.17.11",
"original-fs": "^1.0.0",
"path": "^0.12.7"
}
}