-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.81 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
{
"name": "galassetbox",
"version": "0.1.0",
"private": true,
"description": "Local-first galgame asset organizer with authorized plugin support.",
"author": "GalAssetBox Contributors",
"main": "electron/main.js",
"scripts": {
"start": "electron .",
"check": "node --check electron/main.js && node --check electron/preload.js && node --check electron/extractor-gateway.js && node --check src/plugin-host.js && node --check src/authorized-plugins.js && node --check src/app.js && node --check examples/external-demo-plugin.gabplugin.js && node --check examples/plugin-package-demo/plugin.gabplugin.js && node --check scripts/gateway-check.js",
"gateway:check": "node scripts/gateway-check.js",
"release:check": "npm run check && npm run gateway:check && npm audit --audit-level=moderate --omit=optional && node scripts/release-check.js",
"pack": "electron-builder --dir",
"pack:win": "electron-builder --win --dir",
"dist": "electron-builder --publish never",
"dist:win": "electron-builder --win --publish never",
"dist:mac": "electron-builder --mac --publish never",
"dist:linux": "electron-builder --linux --publish never"
},
"devDependencies": {
"electron": "42.0.1",
"electron-builder": "26.8.1"
},
"overrides": {
"tmp": "0.2.7"
},
"build": {
"appId": "local.galassetbox.app",
"productName": "GalAssetBox",
"files": [
"index.html",
"src/**/*",
"electron/**/*",
"docs/**/*",
"examples/**/*",
"README.md",
"LICENSE*"
],
"mac": {
"category": "public.app-category.utilities"
},
"win": {
"target": [
"nsis",
"zip"
],
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"linux": {
"target": "AppImage",
"category": "Utility"
}
}
}