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": "2.4.4",
|
|
"buildNumber": 1,
|
|
"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/**/*",
|
|
"node_modules/sqlite3/lib/binding/**/*.node"
|
|
],
|
|
"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",
|
|
"nodemailer": "^6.9.2",
|
|
"sequelize": "^6.32.1",
|
|
"socket.io": "^4.5.4",
|
|
"sqlite3": "^5.1.6",
|
|
"ssrf-req-filter": "^1.1.0",
|
|
"xml2js": "^0.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.20"
|
|
}
|
|
} |