-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
130 lines (130 loc) · 3.25 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
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
120
121
122
123
124
125
126
127
128
129
130
{
"name": "gloomhavensecretariat",
"version": "0.102.7",
"license": "AGPL3",
"description": "Gloomhaven Secretariat is a Gloomhaven/Frosthaven Companion app.",
"homepage": "https://gloomhaven-secretariat.de",
"author": {
"name": "Lurkars",
"email": "[email protected]",
"url": "https://www.champonthis.de"
},
"repository": "github:Lurkars/gloomhavensecretariat",
"bugs": "https://github.com/Lurkars/gloomhavensecretariat/issues",
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/lurkars"
},
"main": "main.js",
"nodemonConfig": {
"execMap": {
"js": "node ./scripts/build-data.js"
},
"watch": [
"data/"
],
"ext": "json",
"runOnChangeOnly": true
},
"scripts": {
"prepare": "husky",
"prestart": "node ./scripts/build-data.js",
"start": "ng serve",
"prebuild": "node ./scripts/build-data.js && node ./scripts/pre-build.js",
"build": "ng build",
"postbuild": "node ./scripts/post-build.js",
"pretest": "node ./scripts/build-data.js",
"test": "ng test",
"watch": "nodemon",
"electron": "npm run build -- --base-href ./ && electron .",
"electron:build": "npm run build -- --base-href ./ && electron-builder"
},
"build": {
"appId": "gloomhavensecretariat",
"linux": {
"target": [
"AppImage",
"rpm",
"deb"
],
"publish": [
"github"
]
},
"mac": {
"type": "distribution",
"target": [
{
"target": "dmg",
"arch": [
"universal"
]
},
{
"target": "pkg",
"arch": [
"universal"
]
}
],
"publish": [
"github"
]
},
"win": {
"target": "nsis",
"icon": "build/icon.ico",
"publish": [
"github"
]
},
"files": [
"main.js",
"dist/gloomhavensecretariat"
]
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.10",
"@angular/cdk": "^18.2.11",
"@angular/common": "^18.2.10",
"@angular/compiler": "^18.2.10",
"@angular/core": "^18.2.10",
"@angular/forms": "^18.2.10",
"@angular/platform-browser": "^18.2.10",
"@angular/platform-browser-dynamic": "^18.2.10",
"@angular/router": "^18.2.10",
"@angular/service-worker": "^18.2.10",
"autocompleter": "^9.3.2",
"leaflet": "^1.9.4",
"mermaid": "^10.9.1",
"ng-in-viewport": "^16.1.0",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"uuid": "^11.0.2",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.11",
"@angular/cli": "^18.2.11",
"@angular/compiler-cli": "^18.2.10",
"@types/d3": "^7.4.3",
"@types/dom-screen-wake-lock": "1.0.3",
"@types/dompurify": "^3.0.5",
"@types/jasmine": "~5.1.4",
"@types/leaflet": "^1.9.14",
"@types/uuid": "^10.0.0",
"electron": "^33.0.2",
"electron-builder": "^25.1.8",
"http-server": "^14.1.1",
"husky": "^9.1.6",
"jasmine-core": "~5.4.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"nodemon": "^3.1.7",
"typescript": "~5.5.4"
}
}