-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.47 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.47 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
91
92
93
94
{
"name": "bridge",
"version": "3.4.5",
"description": "A rhythm game chart searching and downloading tool.",
"homepage": "https://github.com/Geomitron/Bridge",
"license": "GPL-3.0",
"type": "module",
"author": {
"name": "Geo",
"email": "geomitron@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Geomitron/Bridge.git"
},
"main": "dist/electron/src-electron/main.js",
"private": true,
"scripts": {
"start": "concurrently \"npm run start:angular\" \"npm run start:electron\" -n angular,electron -c red,yellow",
"start:angular": "ng serve",
"start:electron": "nodemon --exec \"tsc -p src-electron/tsconfig.electron.json && node src-electron/rename-to-mjs.js && electron ./dist/electron/src-electron/main.js --dev\" --watch src-electron/ -e ts",
"build:windows": "ng build -c production && tsc -p src-electron/tsconfig.electron.json && node src-electron/rename-to-mjs.js && electron-builder build --windows",
"build:mac": "ng build -c production && tsc -p src-electron/tsconfig.electron.json && node src-electron/rename-to-mjs.js && electron-builder build --mac",
"build:linux": "ng build -c production && tsc -p src-electron/tsconfig.electron.json && node src-electron/rename-to-mjs.js && electron-builder build --linux",
"release": "ng build -c production && tsc -p src-electron/tsconfig.electron.json && node src-electron/rename-to-mjs.js && electron-builder build",
"postinstall": "electron-rebuild"
},
"dependencies": {
"@angular/animations": "21.1.3",
"@angular/common": "21.1.3",
"@angular/compiler": "21.1.3",
"@angular/core": "21.1.3",
"@angular/forms": "21.1.3",
"@angular/platform-browser": "21.1.3",
"@angular/platform-browser-dynamic": "21.1.3",
"@angular/router": "21.1.3",
"@electron/universal": "^3.0.2",
"better-sqlite3": "^12.6.2",
"bootstrap-icons": "^1.13.1",
"bottleneck": "2.19.5",
"chart-preview": "^1.3.0",
"culori": "^4.0.2",
"dayjs": "^1.11.19",
"electron-unhandled": "5.0.0",
"electron-updater": "^6.7.3",
"electron-window-state": "5.0.3",
"eventemitter3": "^5.0.4",
"exceljs": "^4.4.0",
"fs-extra": "^11.3.3",
"lodash": "^4.17.23",
"parse-sng": "4.0.3",
"rxjs": "^7.8.2",
"sanitize-filename": "1.6.3",
"scan-chart": "^7.0.1",
"three": "^0.182.0",
"tslib": "^2.8.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@angular/build": "^21.1.2",
"@angular/cli": "21.1.2",
"@angular/compiler-cli": "21.1.3",
"@angular/language-service": "21.1.3",
"@eslint/js": "^9.39.2",
"@tailwindcss/postcss": "^4.1.18",
"@types/better-sqlite3": "^7.6.11",
"@types/culori": "^4.0.1",
"@types/fs-extra": "11.0.4",
"@types/lodash": "^4.17.23",
"@types/node": "^25.2.0",
"@types/three": "^0.182.0",
"angular-eslint": "^21.2.0",
"concurrently": "^9.2.1",
"daisyui": "^5.5.17",
"electron": "^40.1.0",
"electron-builder": "^26.7.0",
"electron-rebuild": "^3.2.9",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.5.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "^5.5.5",
"nodemon": "^3.1.11",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-eslint": "^16.4.2",
"source-map-support": "0.5.21",
"tailwind-scrollbar": "^4.0.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
}
}