mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-21 17:33:29 +01:00
79 lines
2.7 KiB
JSON
79 lines
2.7 KiB
JSON
{
|
|
"name": "bonob",
|
|
"version": "0.0.1",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/simojenki/bonob",
|
|
"author": "simojenki <simojenki@users.noreply.github.com>",
|
|
"license": "GPL-3.0-only",
|
|
"dependencies": {
|
|
"@svrooij/sonos": "^2.5.0",
|
|
"@types/express": "^4.17.21",
|
|
"@types/fs-extra": "^11.0.4",
|
|
"@types/jsonwebtoken": "^9.0.5",
|
|
"@types/jws": "^3.2.9",
|
|
"@types/morgan": "^1.9.9",
|
|
"@types/node": "^20.11.5",
|
|
"@types/randomstring": "^1.1.11",
|
|
"@types/underscore": "^1.11.15",
|
|
"@types/uuid": "^9.0.7",
|
|
"@types/xmldom": "0.1.34",
|
|
"axios": "^1.6.5",
|
|
"dayjs": "^1.11.10",
|
|
"eta": "^2.2.0",
|
|
"express": "^4.18.2",
|
|
"fp-ts": "^2.16.2",
|
|
"fs-extra": "^11.2.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"jws": "^4.0.0",
|
|
"libxmljs2": "^0.33.0",
|
|
"morgan": "^1.10.0",
|
|
"node-html-parser": "^6.1.12",
|
|
"randomstring": "^1.3.0",
|
|
"sharp": "^0.33.2",
|
|
"soap": "^1.0.0",
|
|
"ts-md5": "^1.3.1",
|
|
"typescript": "^5.3.3",
|
|
"underscore": "^1.13.6",
|
|
"urn-lib": "^2.0.0",
|
|
"uuid": "^9.0.1",
|
|
"winston": "^3.11.0",
|
|
"xmldom-ts": "^0.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.11",
|
|
"@types/jest": "^29.5.11",
|
|
"@types/mocha": "^10.0.6",
|
|
"@types/supertest": "^6.0.2",
|
|
"@types/tmp": "^0.2.6",
|
|
"chai": "^5.0.0",
|
|
"get-port": "^7.0.0",
|
|
"image-js": "^0.35.5",
|
|
"jest": "^29.7.0",
|
|
"nodemon": "^3.0.3",
|
|
"supertest": "^6.3.4",
|
|
"tmp": "^0.2.1",
|
|
"ts-jest": "^29.1.2",
|
|
"ts-mockito": "^2.6.1",
|
|
"ts-node": "^10.9.2",
|
|
"xmldom-ts": "^0.3.1",
|
|
"xpath-ts": "^1.3.13"
|
|
},
|
|
"overrides": {
|
|
"axios-ntlm": "npm:dry-uninstall",
|
|
"axios": "$axios",
|
|
"@svrooij/sonos": {
|
|
"fast-xml-parser": "^3.21.1"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -Rf build node_modules",
|
|
"build": "tsc",
|
|
"dev": "BNB_SUBSONIC_CUSTOM_CLIENTS1=audio/flac,audio/mpeg,audio/mp4\\>audio/flac BNB_LOG_LEVEL=debug BNB_DEBUG=true BNB_SCROBBLE_TRACKS=false BNB_REPORT_NOW_PLAYING=false BNB_SONOS_SEED_HOST=$BNB_DEV_SONOS_DEVICE_IP BNB_SONOS_SERVICE_NAME=z_bonobDev BNB_URL=\"http://${BNB_DEV_HOST_IP}:4534\" BNB_SUBSONIC_URL=\"${BNB_DEV_SUBSONIC_URL}\" nodemon -V ./src/app.ts",
|
|
"devr": "BNB_LOG_LEVEL=debug BNB_DEBUG=true BNB_SCROBBLE_TRACKS=false BNB_REPORT_NOW_PLAYING=false BNB_SONOS_SEED_HOST=$BNB_DEV_SONOS_DEVICE_IP BNB_SONOS_SERVICE_NAME=z_bonobDev BNB_SONOS_DEVICE_DISCOVERY=true BNB_SONOS_AUTO_REGISTER=true BNB_URL=\"http://${BNB_DEV_HOST_IP}:4534\" BNB_SUBSONIC_URL=\"${BNB_DEV_SUBSONIC_URL}\" nodemon -V ./src/app.ts",
|
|
"register-dev": "ts-node ./src/register.ts http://${BNB_DEV_HOST_IP}:4534",
|
|
"test": "jest",
|
|
"testw": "jest --watch",
|
|
"gitinfo": "git describe --tags > .gitinfo"
|
|
}
|
|
}
|