-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.26 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
{
"name": "macaco",
"version": "1.0.2",
"description": "A Magic Card Collection Software",
"main": "src/main/main.js",
"scripts": {
"postinstall": "install-app-deps",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --publish always",
"test": "standard; DEV=1 npm start"
},
"author": "Eric Mauser",
"license": "MIT",
"devDependencies": {
"electron": "^28.2.1",
"electron-builder": "^24.9.1",
"electron-rebuild": "^3.2.7",
"standard": "^17.0.0"
},
"dependencies": {
"better-sqlite3": "^9.4.0",
"jimp": "^0.22.10",
"jszip": "^3.10.1"
},
"standard": {
"globals": [
"macaco",
"CustomEvent",
"customElements",
"HTMLElement",
"IntersectionObserver",
"CSSStyleSheet"
]
},
"build": {
"appId": "shagu.macaco",
"productName": "Macaco",
"artifactName": "${name}-${version}-${os}.${ext}",
"extraResources": [
"foil.png"
],
"dmg": {
"writeUpdateInfo": false
},
"mac": {
"category": "public.app-category.utilities",
"target": [
"dmg"
]
},
"linux": {
"target": [
"AppImage"
]
},
"win": {
"target": [
"portable"
]
}
}
}