-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package-dev.json
119 lines (119 loc) · 3.91 KB
/
package-dev.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "ddb-adventure-muncher",
"version": "2.1.7",
"description": "D&D Beyond Adventure Muncher for Foundry Virtual Tabletop",
"repository": "https://github.com/MrPrimate/ddb-adventure-muncher",
"main": "main.js",
"scripts": {
"start": "npm run rebuild && NODE_ENV=DEV electron .",
"start-debug": "NODE_ENV=DEV electron --inspect=5858 .",
"start_windows": "set NODE_ENV=DEV && electron .",
"lint": "npx eslint ./",
"lint-fix": "npx eslint ./ --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist-l": "electron-builder -l --publish never",
"dist-w": "electron-builder -w --publish never",
"dist-wl": "electron-builder -wl --publish never",
"dist-m": "electron-builder -m --publish never",
"github-dist-m": "electron-builder -m",
"docs-index": "pandoc README.md -f markdown --css=build/pandoc.css -t html5 --self-contained -o dist/index.html",
"docs-guide": "mkdir -p ./dist/docs; cd docs; pandoc guide.md -f markdown --css=../build/pandoc.css -t html5 --self-contained -o ../dist/docs/index.html --lua-filter=links-to-html.lua --metadata pagetitle='Adventure Muncher Getting Started Guide'",
"docs-scenes": "mkdir -p ./dist/docs; cd docs; pandoc scenes.md -f markdown --css=../build/pandoc.css -t html5 --self-contained -o ../dist/docs/scenes.html --metadata pagetitle='Adventure Muncher Contributing Scenes'",
"docs-third": "mkdir -p ./dist/docs; cd docs; pandoc third.md -f markdown --css=../build/pandoc.css -t html5 --self-contained -o ../dist/docs/third.html --metadata pagetitle='Adventure Muncher Third Party Integration'",
"docs": "npm run docs-guide && npm run docs-scenes && npm run docs-third"
},
"build": {
"appId": "ddb-adventure-munch",
"copyright": "Copyright © 2021-2022 Jack Holloway",
"artifactName": "${name}-${version}-${os}-${arch}.${ext}",
"npmRebuild": false,
"extraFiles": [
{
"from": "content/templates",
"to": "resources/content/templates",
"filter": [
"**/*"
]
},
{
"from": "content/icons/icon.png",
"to": "resources/content/icon.png",
"filter": [
"**/*"
]
},
{
"from": "content/icons",
"to": "content/icons",
"filter": [
"**/*"
]
}
],
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "./build/entitlements.mac.inherit.plist",
"entitlementsInherit": "./build/entitlements.mac.inherit.plist",
"target": {
"target": "dmg",
"arch": [
"x64"
]
},
"category": "public.app-category.developer-tools",
"notarize": true
},
"linux": {
"target": [
"AppImage",
"rpm",
"deb"
]
},
"win": {
"publisherName": "DDBAdventureMuncher",
"target": [
"nsis"
]
}
},
"keywords": [],
"author": {
"name": "Jack Holloway",
"email": "jack@mrprimate.co.uk"
},
"homepage": "https://github.com/mrprimate",
"license": "MIT",
"devDependencies": {
"@electron/notarize": "^2.3.2",
"@electron/rebuild": "^3.2.7",
"electron": "^24.8.8",
"electron-builder": "^24.13.3",
"electron-reload": "^1.5.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "3.1.0",
"prettier-eslint": "^16.3.0",
"spectre.css": "^0.5.9"
},
"dependencies": {
"@tensorflow/tfjs-node": "^4.20.0",
"better-sqlite3-multiple-ciphers": "^9.5.0",
"electron-log": "^4.4.1",
"electron-updater": "^6.2.0",
"extract-zip": "^2.0.1",
"fs-extra": "^9.1.0",
"glob": "^8.0.1",
"image-size": "^0.9.7",
"jsdom": "^16.7.0",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"semver": "^7.3.5",
"upscaler": "^1.0.0-beta.19",
"yargs": "^16.2.0"
}
}