audiobookshelf/package.json

42 lines
1.4 KiB
JSON
Raw Normal View History

2021-08-17 17:01:11 -05:00
{
"name": "audiobookshelf",
2022-09-05 15:45:44 -05:00
"version": "2.1.5",
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": {
"dev": "node index.js",
2021-09-21 16:55:32 -05:00
"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",
2022-01-01 15:04:29 -06:00
"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",
2022-01-01 15:04:29 -06:00
"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": {
"axios": "^0.26.1",
2021-08-17 17:01:11 -05:00
"express": "^4.17.1",
2022-07-08 18:11:09 -05:00
"graceful-fs": "^4.2.10",
"htmlparser2": "^8.0.1",
"node-tone": "^1.0.1",
"socket.io": "^4.4.1",
"xml2js": "^0.4.23"
}
}