-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
66 lines (66 loc) · 1.42 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
{
"name": "characterizer",
"version": "0.4.0",
"description": "The best app to train character values and generate conflicts, dilemmas, and common ground between characters.",
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wonderunit/characterizer.git"
},
"scripts": {
"start": "electron .",
"postinstall": "install-app-deps",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:mac": "build -m",
"dist:win": "build -w",
"dist:linux": "build -l"
},
"devDependencies": {
"electron": "4.0.0-beta.7",
"electron-builder": "20.36.2"
},
"dependencies": {
"electron-updater": "4.0.4",
"knex": "^0.15.2",
"nan": "^2.7.0",
"sqlite3": "4.0.4",
"trash": "^4.0.1",
"electron-is-dev": "1.0.1"
},
"build": {
"asar": true,
"appId": "com.wonderunit.characterizer",
"mac": {
"icon": "build/icon.icns"
},
"dmg": {
"background": "build/background.png",
"icon": "build/icon.icns",
"iconSize": 140,
"contents": [
{
"x": 120,
"y": 250
},
{
"x": 420,
"y": 250,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"icon": "build/icon.ico"
},
"files": [
"**/*",
"!*.md",
"!README.md"
],
"nsis": {
"perMachine": true
}
}
}