2021-08-17 17:01:11 -05:00
|
|
|
{
|
|
|
|
"name": "audiobookshelf",
|
2025-06-14 17:57:19 -05:00
|
|
|
"version": "2.25.1",
|
2023-10-22 15:53:05 -05:00
|
|
|
"buildNumber": 1,
|
2022-05-15 12:53:41 -05:00
|
|
|
"description": "Self-hosted audiobook and podcast server",
|
2021-08-17 17:01:11 -05:00
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2025-01-07 17:41:09 +02:00
|
|
|
"dev": "nodemon --watch server index.js -- --dev",
|
2021-09-21 16:55:32 -05:00
|
|
|
"start": "node index.js",
|
2022-05-21 11:21:03 -05:00
|
|
|
"client": "cd client && npm ci && npm run generate",
|
2025-01-07 17:41:09 +02:00
|
|
|
"prod": "npm run client && npm ci && node index.js",
|
2024-07-06 19:43:55 +03:00
|
|
|
"build-win": "npm run client && pkg -t node20-win-x64 -o ./dist/win/audiobookshelf -C GZip .",
|
2021-10-31 14:59:39 -05:00
|
|
|
"build-linux": "build/linuxpackager",
|
2024-01-20 16:39:43 -06:00
|
|
|
"docker": "docker buildx build --platform linux/amd64,linux/arm64 --push . -t advplyr/audiobookshelf",
|
2022-06-18 11:34:28 -05:00
|
|
|
"docker-amd64-local": "docker buildx build --platform linux/amd64 --load . -t advplyr/audiobookshelf-amd64-local",
|
|
|
|
"docker-arm64-local": "docker buildx build --platform linux/arm64 --load . -t advplyr/audiobookshelf-arm64-local",
|
2023-11-22 19:00:11 +02:00
|
|
|
"deploy-linux": "node deploy/linux",
|
|
|
|
"test": "mocha",
|
|
|
|
"coverage": "nyc mocha"
|
2021-09-22 20:40:35 -05:00
|
|
|
},
|
2025-01-07 17:41:09 +02:00
|
|
|
"bin": "index.js",
|
2021-09-22 20:40:35 -05:00
|
|
|
"pkg": {
|
2022-01-11 18:19:08 -06:00
|
|
|
"assets": [
|
|
|
|
"client/dist/**/*",
|
2024-09-14 13:05:21 +03:00
|
|
|
"node_modules/sqlite3/lib/binding/**/*.node",
|
|
|
|
"server/migrations/*.js"
|
2022-01-11 18:19:08 -06:00
|
|
|
],
|
2021-09-22 20:40:35 -05:00
|
|
|
"scripts": [
|
2025-01-07 17:41:09 +02:00
|
|
|
"index.js",
|
2021-09-22 20:40:35 -05:00
|
|
|
"server/**/*.js"
|
|
|
|
]
|
2021-08-17 17:01:11 -05:00
|
|
|
},
|
2023-11-22 19:00:11 +02:00
|
|
|
"mocha": {
|
|
|
|
"recursive": true
|
|
|
|
},
|
2021-08-17 17:01:11 -05:00
|
|
|
"author": "advplyr",
|
2022-01-06 20:36:10 +01:00
|
|
|
"license": "GPL-3.0",
|
2021-08-17 17:01:11 -05:00
|
|
|
"dependencies": {
|
2023-02-01 15:58:58 -06:00
|
|
|
"axios": "^0.27.2",
|
2023-11-22 19:00:11 +02:00
|
|
|
"cookie-parser": "^1.4.6",
|
2021-08-17 17:01:11 -05:00
|
|
|
"express": "^4.17.1",
|
2023-11-22 19:00:11 +02:00
|
|
|
"express-session": "^1.17.3",
|
2022-07-08 18:11:09 -05:00
|
|
|
"graceful-fs": "^4.2.10",
|
2022-05-27 19:41:40 -05:00
|
|
|
"htmlparser2": "^8.0.1",
|
2023-11-22 19:00:11 +02:00
|
|
|
"lru-cache": "^10.0.3",
|
2024-09-18 08:28:15 +03:00
|
|
|
"node-unrar-js": "^2.0.2",
|
2024-05-29 16:23:47 -05:00
|
|
|
"nodemailer": "^6.9.13",
|
2023-11-22 19:00:11 +02:00
|
|
|
"openid-client": "^5.6.1",
|
2024-01-22 20:36:20 -08:00
|
|
|
"p-throttle": "^4.1.1",
|
2023-11-22 19:00:11 +02:00
|
|
|
"passport": "^0.6.0",
|
|
|
|
"passport-jwt": "^4.0.1",
|
2024-09-04 12:48:10 +03:00
|
|
|
"semver": "^7.6.3",
|
2024-01-19 17:54:41 -06:00
|
|
|
"sequelize": "^6.35.2",
|
2023-01-05 00:46:23 +01:00
|
|
|
"socket.io": "^4.5.4",
|
2025-03-18 00:09:49 +02:00
|
|
|
"sqlite3": "^5.1.7",
|
2023-10-13 16:33:47 -05:00
|
|
|
"ssrf-req-filter": "^1.1.0",
|
2023-04-16 16:33:28 -05:00
|
|
|
"xml2js": "^0.5.0"
|
2022-10-29 23:36:52 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-22 19:00:11 +02:00
|
|
|
"chai": "^4.3.10",
|
|
|
|
"mocha": "^10.2.0",
|
|
|
|
"nodemon": "^2.0.20",
|
|
|
|
"nyc": "^15.1.0",
|
|
|
|
"sinon": "^17.0.1"
|
2022-05-19 19:10:51 -07:00
|
|
|
}
|
2023-10-05 13:48:55 -07:00
|
|
|
}
|