-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
55 lines (55 loc) · 2.47 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
{
"name": "tc-launcher",
"version": "1.0.6",
"license": "MIT",
"scripts": {
"build": "ng build",
"lint": "ng lint",
"build-electron": "tsc -p src/desktop-app --outDir dist/ && cp src/desktop-app/package.json dist/",
"build-native": "electron-rebuild -f && cp build/Release/tc_launcher.node dist/",
"build-all-dev": "npm run build && npm run build-electron && npm run build-native",
"electron": "electron --remote-debugging-port=9222 dist/desktop-app/desktop-main.js",
"install-electron-deps": "pushd dist && cp ../src/desktop-app/package-lock.json ./ && npm install && popd",
"build-package:mac": "ng build --configuration production && npm run build-native && npm run build-electron && npm run install-electron-deps && electron-packager dist trinitycore-launcher --asar --out=bin --overwrite --icon=src/assets/icon.icns",
"build-package:win": "ng build --configuration production && npm run build-native && npm run build-electron && npm run install-electron-deps && electron-packager dist trinitycore-launcher --asar --out=bin --overwrite --icon=src/assets/icon.ico --win32metadata.CompanyName=Shauren --win32metadata.ProductName=\"TrinityCore Client Launcher\""
},
"gypfile": true,
"private": true,
"dependencies": {
"@angular/animations": "^16.0.4",
"@angular/common": "^16.0.4",
"@angular/compiler": "^16.0.4",
"@angular/core": "^16.0.4",
"@angular/forms": "^16.0.4",
"@angular/platform-browser": "^16.0.4",
"@angular/platform-browser-dynamic": "^16.0.4",
"@angular/router": "^16.0.4",
"command-line-args": "^5.2.1",
"electron-settings": "^4.0.2",
"rxjs": "^6.6.7",
"tslib": "^2.0.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.4",
"@angular-eslint/builder": "16.0.3",
"@angular-eslint/eslint-plugin": "16.0.3",
"@angular-eslint/eslint-plugin-template": "16.0.3",
"@angular-eslint/schematics": "16.0.3",
"@angular-eslint/template-parser": "16.0.3",
"@angular/cli": "^16.0.4",
"@angular/compiler-cli": "^16.0.4",
"@angular/language-service": "^16.0.4",
"@electron/rebuild": "^3.2.13",
"@types/command-line-args": "^5.2.0",
"@types/node": "^16.18.0",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"electron": "^25.0.1",
"electron-packager": "^17.1.1",
"eslint": "^8.40.0",
"eslint-plugin-import": "^2.27.5",
"ts-node": "~10.9.1",
"typescript": "~4.9.5"
}
}