This repository was archived by the owner on May 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.61 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.61 KB
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
{
"name": "DSAUtilities",
"version": "1.0.1",
"description": "An RPG digital whiteboard",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist-win": "build --win",
"dist-win-portable": "build --win --dir",
"dist-mac": "build --mac",
"dist-linux": "build --linux",
"dist-arm": "build --arm64",
"dist-all-w": "npm run dist-win && npm run dist-win-portable ",
"dist-all-l": "npm run dist-linux && npm run dist-arm"
},
"repository": "https://github.com/ItsCoding/DSAUtilities",
"homepage": "https://github.com/ItsCoding/DSAUtilities",
"keywords": [
"DSA5",
"DSA",
"whiteboard",
"digital",
"rpg"
],
"author": "Alexander Quadt <10713197+ItsCoding@users.noreply.github.com> https://github.com/ItsCoding",
"license": "MPL-2.0",
"devDependencies": {
"electron": "^11.5.0",
"electron-builder": "^20.39.0",
"electron-winstaller": "^2.7.0"
},
"dependencies": {
"electron-config": "^2.0.0",
"electron-store": "^2.0.0",
"electron-updater": "^4.0.6",
"merge-images": "^1.1.0",
"object-sizeof": "^1.3.0",
"minimist": ">=1.2.3"
},
"build": {
"appId": "DSAUtilities",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": [
"NSIS",
"portable"
],
"icon": "resources/dsaicon.ico"
}
}
}