-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.5 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
{
"name": "dddg-desktop-version",
"version": "2.5.2",
"description": "The desktop version of DDDG",
"main": "main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"test": "npm run lint",
"start": "electron .",
"pack": "electron-builder --dir",
"dist:windows": "electron-builder --windows --x64 --ia32",
"dist:linux": "electron-builder --linux --x64 --arm64",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edave64/dddg-desktop-version.git"
},
"author": "edave64",
"license": "MIT",
"bugs": {
"url": "https://github.com/edave64/dddg-desktop-version/issues"
},
"homepage": "https://github.com/edave64/dddg-desktop-version#readme",
"devDependencies": {
"electron": "^29.2.0",
"electron-builder": "^24.13.3",
"np": "^3.0.4",
"prettier": "^3.2.5"
},
"dependencies": {
"@edave64/doki-doki-dialog-generator-pack-format": "^2.0.0",
"await-lock": "^2.2.2",
"chokidar": "^3.5.3",
"deepmerge": "^4.2.2",
"del": "^6.1.1",
"electron-updater": "^6.1.8",
"express": "^4.19.2"
},
"build": {
"appId": "org.xcvbnm.dddg",
"productName": "Doki Doki Dialog Generator",
"mac": {
"category": "public.app-category.games",
"darkModeSupport": false
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage"
],
"category": "Game;Graphics"
}
}
}