Files
Bridge-Multi/package.json
2023-11-23 12:44:13 -06:00

74 lines
2.6 KiB
JSON

{
"name": "bridge",
"version": "1.5.1",
"description": "A Clone Hero library management tool with built in chart searching and downloading.",
"homepage": "https://github.com/Geomitron/Bridge",
"license": "GPL-3.0",
"author": {
"name": "Geo",
"email": "geomitron@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Geomitron/Bridge.git"
},
"main": "dist/electron/main.js",
"private": true,
"scripts": {
"start": "run-p serve:angular serve:electron",
"serve:electron": "wait-on http-get://localhost:4200/ && nodemon --exec \"tsc -p tsconfig.electron.json && electron . --dev\" --watch src/electron -e ts",
"lint": "ng lint",
"clean": "rimraf dist release",
"build:windows": "ng build -c production && tsc -p tsconfig.electron.json && electron-builder build --windows",
"build:mac": "ng build -c production && tsc -p tsconfig.electron.json && electron-builder build --mac",
"build:linux": "ng build -c production && tsc -p tsconfig.electron.json && electron-builder build --linux",
"serve:angular": "ng serve",
"release": "ng build -c production && tsc -p tsconfig.electron.json && electron-builder build"
},
"dependencies": {
"@angular/animations": "^17.0.4",
"@angular/common": "^17.0.4",
"@angular/compiler": "^17.0.4",
"@angular/core": "^17.0.4",
"@angular/forms": "^17.0.4",
"@angular/platform-browser": "^17.0.4",
"@angular/platform-browser-dynamic": "^17.0.4",
"@angular/router": "^17.0.4",
"@electron/remote": "^2.0.9",
"bottleneck": "^2.19.5",
"cli-color": "^2.0.0",
"comparators": "^3.0.2",
"electron-unhandled": "^4.0.1",
"electron-updater": "^4.3.1",
"electron-window-state": "^5.0.3",
"fomantic-ui": "^2.8.3",
"jquery": "^3.5.1",
"jsonfile": "^6.0.1",
"mv": "^2.1.1",
"randombytes": "^2.1.0",
"rimraf": "^5.0.5",
"rxjs": "~7.8.1",
"sanitize-filename": "^1.6.3",
"tslib": "^2.0.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.3",
"@angular-eslint/builder": "17.1.0",
"@angular/cli": "^17.0.3",
"@angular/compiler-cli": "^17.0.4",
"@angular/language-service": "^17.0.4",
"@types/cli-color": "^2.0.0",
"@types/jsonfile": "^6.0.0",
"@types/mv": "^2.1.0",
"@types/node": "^18.16.0",
"@types/randombytes": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"electron": "^27.1.2",
"electron-builder": "^23.6.0",
"eslint": "^8.54.0",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
}
}