forked from Lurkars/gloomhavensecretariat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.68 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
{
"name": "gloomhavensecretariat",
"version": "0.35.3",
"license": "AGPL3",
"description": "Gloomhaven Secretariat is a Gloomhaven Companion app.",
"homepage": "https://gloomhaven-secretary.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",
"watch": {
"prestart": {
"patterns": ["data"],
"extensions": "json",
"runOnChangeOnly": true
}
},
"scripts": {
"electron": "npm run build -- --base-href ./ && electron .",
"electron:build": "npm run build -- --base-href ./ && electron-builder",
"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": "npm-watch"
},
"build": {
"appId": "gloomhavensecretariat",
"linux": {
"target": [
"AppImage",
"rpm",
"deb"
],
"publish": [
"github"
]
},
"mac": {
"type": "distribution",
"target": [
"dmg",
"pkg"
],
"publish": [
"github"
]
},
"win": {
"target": "nsis",
"icon": "build/icon.ico",
"publish": [
"github"
]
},
"files": [
"main.js",
"dist/gloomhavensecretariat"
]
},
"private": true,
"dependencies": {
"@angular/animations": "^15.0.4",
"@angular/cdk": "^15.0.3",
"@angular/common": "^15.0.4",
"@angular/compiler": "^15.0.4",
"@angular/core": "^15.0.4",
"@angular/forms": "^15.0.4",
"@angular/platform-browser": "^15.0.4",
"@angular/platform-browser-dynamic": "^15.0.4",
"@angular/router": "^15.0.4",
"@angular/service-worker": "^15.0.4",
"rxjs": "~7.8.0",
"tslib": "^2.4.1",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.4",
"@angular/cli": "^15.0.4",
"@angular/compiler-cli": "^15.0.4",
"@types/jasmine": "~4.3.1",
"@types/uuid": "^9.0.0",
"electron": "^22.0.0",
"electron-builder": "^23.6.0",
"http-server": "^14.1.1",
"jasmine-core": "~4.5.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"npm-watch": "^0.11.0",
"typescript": "~4.8.4"
}
}