-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.21 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
{
"name": "CalculistDesktop",
"productName": "Calculist",
"version": "0.3.2",
"license": "MIT",
"description": "Desktop version of Calculist.io",
"main": "./main.js",
"build": {
"appId": "org.calculist.Calculist",
"mac": {
"category": "public.app-category.productivity",
"target": "dmg"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"linux": {
"category": "Science",
"target": [
"AppImage",
"deb"
]
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
}
},
"scripts": {
"start": "electron .",
"dev": "electron . --debug",
"dist": "build"
},
"author": {
"name": "Dan Allison",
"email": "[email protected]",
"url": "https://calculist.io"
},
"repository": {
"type": "git",
"url": "https://github.com/calculist/calculist-desktop.git"
},
"dependencies": {
"lodash": "4.11.2"
},
"devDependencies": {
"electron": ">=1.7.11",
"electron-builder": "^19.30.1",
"electron-winstaller": "^2.2.0"
}
}