-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 3.04 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
{
"name": "starfield-mod-loader",
"author": "Mychal Thompson <[email protected]>",
"repository": "https://github.com/lVlyke/starfield-mod-loader",
"license": "GPL-3.0",
"version": "0.9.1",
"main": "electron.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",
"ng": "./node_modules/.bin/ng",
"build": "node ./scripts/build.js",
"build:release": "npm run build -- --release",
"serve": "node ./scripts/serve.js",
"serve:release": "npm run serve -- --release",
"package": "node ./scripts/package.js",
"package:all": "npm run package -- --all",
"prepare-packages": "node ./scripts/prepare-packages.js",
"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@^31.3.1 && unset npm_config_platform"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.6",
"@angular/cdk": "~18.2.6",
"@angular/common": "^18.2.6",
"@angular/compiler": "^18.2.6",
"@angular/core": "^18.2.6",
"@angular/forms": "^18.2.6",
"@angular/material": "~18.2.6",
"@angular/platform-browser": "^18.2.6",
"@angular/platform-browser-dynamic": "^18.2.6",
"@angular/router": "^18.2.6",
"@lithiumjs/angular": "^8.0.0",
"@lithiumjs/ngx-material-theming": "^0.13.0",
"@ngxs/store": "^18.1.1",
"7zip-bin": "^5.2.0",
"detect-file-encoding-and-language": "^2.4.0",
"electron-log": "^5.2.0",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"node-7z": "^3.0.0",
"normalize.css": "^8.0.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"which": "^4.0.0",
"win-version-info": "^6.0.1",
"xml2js": "^0.6.2",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.6",
"@angular/cli": "~18.2.6",
"@angular/compiler-cli": "^18.2.6",
"@electron/packager": "^18.3.5",
"@ngxs/devtools-plugin": "^18.1.1",
"@types/jasmine": "~4.3.0",
"@types/lodash": "^4.17.9",
"@types/node": "^18.17.19",
"@types/node-7z": "^2.1.10",
"@types/win-version-info": "^3.1.3",
"@types/xml2js": "^0.4.14",
"chokidar": "^4.0.1",
"electron": "^32.1.2",
"jasmine-core": "~4.6.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"license-checker-rseidelsohn": "^4.2.7",
"typescript": "~5.5.4"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}