mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-07 08:34:10 +01:00
44 lines
1.5 KiB
JSON
44 lines
1.5 KiB
JSON
{
|
|
"name": "audiobookshelf",
|
|
"version": "2.2.15",
|
|
"description": "Self-hosted audiobook and podcast server",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "nodemon --watch server index.js",
|
|
"start": "node index.js",
|
|
"client": "cd client && npm ci && npm run generate",
|
|
"prod": "npm run client && npm ci && node prod.js",
|
|
"build-win": "npm run client && pkg -t node16-win-x64 -o ./dist/win/audiobookshelf -C GZip .",
|
|
"build-linux": "build/linuxpackager",
|
|
"docker": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 --push . -t advplyr/audiobookshelf",
|
|
"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",
|
|
"docker-armv7-local": "docker buildx build --platform linux/arm/v7 --load . -t advplyr/audiobookshelf-armv7-local",
|
|
"deploy-linux": "node deploy/linux"
|
|
},
|
|
"bin": "prod.js",
|
|
"pkg": {
|
|
"assets": [
|
|
"client/dist/**/*",
|
|
"server/Db.js"
|
|
],
|
|
"scripts": [
|
|
"prod.js",
|
|
"server/**/*.js"
|
|
]
|
|
},
|
|
"author": "advplyr",
|
|
"license": "GPL-3.0",
|
|
"dependencies": {
|
|
"axios": "^0.27.2",
|
|
"express": "^4.17.1",
|
|
"graceful-fs": "^4.2.10",
|
|
"htmlparser2": "^8.0.1",
|
|
"node-tone": "^1.0.1",
|
|
"socket.io": "^4.5.4",
|
|
"xml2js": "^0.4.23"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.20"
|
|
}
|
|
} |