audiobookshelf/package.json

59 lines
1.6 KiB
JSON
Raw Normal View History

2021-08-17 17:01:11 -05:00
{
"name": "audiobookshelf",
2022-02-27 19:02:07 -06:00
"version": "1.7.1",
2021-09-24 19:37:35 -05:00
"description": "Self-hosted audiobook server for managing and playing audiobooks",
2021-08-17 17:01:11 -05:00
"main": "index.js",
"scripts": {
"dev": "node index.js",
2021-09-21 16:55:32 -05:00
"start": "node index.js",
2021-09-25 16:23:57 -05:00
"client": "cd client && npm install && npm run generate",
2021-09-22 20:40:35 -05:00
"prod": "npm run client && npm install && node prod.js",
"build-win": "pkg -t node12-win-x64 -o ./dist/win/audiobookshelf .",
"build-linux": "build/linuxpackager",
2022-01-01 15:04:29 -06:00
"docker": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 --push . -t advplyr/audiobookshelf",
"deploy": "node dist/autodeploy"
2021-09-22 20:40:35 -05:00
},
"bin": "prod.js",
"pkg": {
2022-01-11 18:19:08 -06:00
"assets": [
"client/dist/**/*",
"server/Db.js"
],
2021-09-22 20:40:35 -05:00
"scripts": [
"prod.js",
"server/**/*.js"
]
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": {
"archiver": "^5.3.0",
2021-08-17 17:01:11 -05:00
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"command-line-args": "^5.2.0",
"date-and-time": "^2.0.1",
2021-08-17 17:01:11 -05:00
"express": "^4.17.1",
2021-09-13 20:18:58 -05:00
"express-fileupload": "^1.2.1",
"express-rate-limit": "^5.3.0",
2021-11-28 19:36:44 -06:00
"fast-sort": "^3.1.1",
2021-08-17 17:01:11 -05:00
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^10.0.0",
"image-type": "^4.1.0",
"ip": "^1.1.5",
2021-08-17 17:01:11 -05:00
"jsonwebtoken": "^8.5.1",
"libgen": "^2.1.0",
2022-01-31 16:07:02 -06:00
"njodb": "^0.4.29",
"node-cron": "^3.0.0",
2022-01-24 16:53:35 -06:00
"node-ffprobe": "^3.0.0",
"node-stream-zip": "^1.15.0",
"podcast": "^1.3.0",
"read-chunk": "^3.1.0",
"recursive-readdir-async": "^1.1.8",
"socket.io": "^4.1.3",
2021-11-21 10:59:32 -08:00
"string-strip-html": "^8.3.0",
"watcher": "^1.2.0",
"xml2js": "^0.4.23"
},
2021-08-21 14:02:10 -05:00
"devDependencies": {}
2022-02-27 19:03:38 -06:00
}