mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-07 16:44:16 +01:00
49 lines
1.6 KiB
JSON
49 lines
1.6 KiB
JSON
{
|
|
"name": "audiobookshelf",
|
|
"version": "1.2.1",
|
|
"description": "Self-hosted audiobook server for managing and playing audiobooks.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "node index.js",
|
|
"start": "node index.js",
|
|
"client": "cd client && npm install && npm run generate-client",
|
|
"generate-client": "cd client && npm run generate",
|
|
"prod": "npm run client && npm install && node prod.js",
|
|
"build-client": "cd client && rm -rf node_modules && npm i && npm run generate",
|
|
"build-server": "rm -rf node_modules && npm i && npm i ffmpeg-static",
|
|
"build-prep": "npm run build-client && npm run build-server",
|
|
"build-win": "npm run build-prep && pkg -t node12-win-x64 -o ./dist/win/audiobookshelf .",
|
|
"build-linuxarm": "npm run build-prep && pkg -t node12-linux-arm64 -o ./dist/linuxarm/audiobookshelf .",
|
|
"build-linux": "npm run build-prep && pkg -t node12-linux-x64 -o ./dist/linux/audiobookshelf ."
|
|
},
|
|
"bin": "prod.js",
|
|
"pkg": {
|
|
"assets": "client/dist/**/*",
|
|
"scripts": [
|
|
"prod.js",
|
|
"server/**/*.js"
|
|
]
|
|
},
|
|
"author": "advplyr",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"archiver": "^5.3.0",
|
|
"axios": "^0.21.1",
|
|
"bcryptjs": "^2.4.3",
|
|
"command-line-args": "^5.2.0",
|
|
"cookie-parser": "^1.4.5",
|
|
"express": "^4.17.1",
|
|
"express-fileupload": "^1.2.1",
|
|
"fluent-ffmpeg": "^2.1.2",
|
|
"fs-extra": "^10.0.0",
|
|
"ip": "^1.1.5",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"libgen": "^2.1.0",
|
|
"njodb": "^0.4.20",
|
|
"node-dir": "^0.1.17",
|
|
"podcast": "^1.3.0",
|
|
"socket.io": "^4.1.3",
|
|
"watcher": "^1.2.0"
|
|
},
|
|
"devDependencies": {}
|
|
} |