-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.34 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
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
{
"name": "stellar-mod-loader",
"author": "Mychal Thompson <mychal.r.thompson@gmail.com>",
"repository": "https://github.com/lVlyke/stellar-mod-loader",
"license": "GPL-3.0",
"version": "0.14.2",
"main": "electron/main.js",
"scripts": {
"app:build-dist-debug": "npm run build && npm run package",
"app:build-dist": "npm run build:release && npm run package",
"app:build-dist:all": "npm run build:release && npm run package:all",
"app:build-debug": "npm run app:build-dist-debug && npm run prepare-packages",
"app:build-release": "npm run app:build-dist && npm run prepare-packages",
"app:build-release:all": "npm run app:build-dist:all && npm run prepare-packages",
"game-db:generate-schema": "ts-json-schema-generator --path ./src/app/models/game-database.ts --type GameDatabase > game-db.schema.json",
"ng": "./node_modules/.bin/ng",
"build": "node ./scripts/build.cjs",
"build:release": "npm run build -- --release",
"serve": "node ./scripts/serve.cjs",
"serve:release": "npm run serve -- --release",
"package": "node ./scripts/package.cjs",
"package:all": "npm run package -- --all",
"prepare-packages": "node ./scripts/prepare-packages.cjs",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"start": "npm run serve",
"electron-win32-install": "npm remove electron && npm install && export npm_config_platform=win32 && npm install --save-dev electron@^37.10.0 && unset npm_config_platform"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.16",
"@angular/cdk": "~20.2.14",
"@angular/common": "^20.3.16",
"@angular/compiler": "^20.3.16",
"@angular/core": "^20.3.16",
"@angular/forms": "^20.3.16",
"@angular/material": "~20.2.14",
"@angular/platform-browser": "^20.3.16",
"@angular/platform-browser-dynamic": "^20.3.16",
"@angular/router": "^20.3.16",
"@lithiumjs/angular": "^8.0.2",
"@lithiumjs/ngx-material-theming": "^1.0.0",
"@lithiumjs/ngx-virtual-scroll": "^0.3.4",
"@ngxs/store": "^20.1.0",
"detect-file-encoding-and-language": "^2.4.0",
"electron-log": "^5.4.3",
"es-toolkit": "^1.41.0",
"fs-extra": "^11.3.2",
"mime-types": "^3.0.1",
"node-7z": "^3.0.0",
"rxjs": "~7.8.2",
"steam-binary-vdf": "^0.1.0",
"tslib": "^2.3.0",
"which": "^6.0.0",
"win-version-info": "^6.0.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@angular/build": "^20.3.12",
"@angular/cli": "^20.3.15",
"@angular/compiler-cli": "^20.3.16",
"@electron/packager": "^19.0.2",
"@ngxs/devtools-plugin": "^20.1.0",
"@types/fs-extra": "^11.0.4",
"@types/jasmine": "~5.1.13",
"@types/mime-types": "^3.0.1",
"@types/node": "^24.10.1",
"@types/node-7z": "^2.1.11",
"@types/which": "^3.0.4",
"@types/win-version-info": "^3.1.3",
"@types/xml2js": "^0.4.14",
"baseline-browser-mapping": "^2.9.19",
"chokidar": "^4.0.3",
"electron": "^37.10.0",
"jasmine-core": "~5.12.1",
"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",
"license-checker-rseidelsohn": "^4.4.2",
"ts-json-schema-generator": "^2.4.0",
"typescript": "~5.8.3"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}