audiobookshelf/package.json

67 lines
1.9 KiB
JSON
Raw Normal View History

2021-08-18 00:01:11 +02:00
{
"name": "audiobookshelf",
2024-10-12 23:18:45 +02:00
"version": "2.15.0",
"buildNumber": 1,
2022-05-15 19:53:41 +02:00
"description": "Self-hosted audiobook and podcast server",
2021-08-18 00:01:11 +02:00
"main": "index.js",
"scripts": {
"dev": "nodemon --watch server index.js",
2021-09-21 23:55:32 +02: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 node20-win-x64 -o ./dist/win/audiobookshelf -C GZip .",
"build-linux": "build/linuxpackager",
2024-01-20 23:39:43 +01:00
"docker": "docker buildx build --platform linux/amd64,linux/arm64 --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",
"deploy-linux": "node deploy/linux",
"test": "mocha",
"coverage": "nyc mocha"
2021-09-23 03:40:35 +02:00
},
"bin": "prod.js",
"pkg": {
2022-01-12 01:19:08 +01:00
"assets": [
"client/dist/**/*",
"node_modules/sqlite3/lib/binding/**/*.node",
"server/migrations/*.js"
2022-01-12 01:19:08 +01:00
],
2021-09-23 03:40:35 +02:00
"scripts": [
"prod.js",
"server/**/*.js"
]
2021-08-18 00:01:11 +02:00
},
"mocha": {
"recursive": true
},
2021-08-18 00:01:11 +02:00
"author": "advplyr",
2022-01-06 20:36:10 +01:00
"license": "GPL-3.0",
2021-08-18 00:01:11 +02:00
"dependencies": {
"axios": "^0.27.2",
"cookie-parser": "^1.4.6",
2021-08-18 00:01:11 +02:00
"express": "^4.17.1",
"express-session": "^1.17.3",
2022-07-09 01:11:09 +02:00
"graceful-fs": "^4.2.10",
"htmlparser2": "^8.0.1",
"lru-cache": "^10.0.3",
"node-unrar-js": "^2.0.2",
"nodemailer": "^6.9.13",
"openid-client": "^5.6.1",
"p-throttle": "^4.1.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"semver": "^7.6.3",
"sequelize": "^6.35.2",
"socket.io": "^4.5.4",
2023-07-05 01:14:44 +02:00
"sqlite3": "^5.1.6",
"ssrf-req-filter": "^1.1.0",
2023-04-16 23:33:28 +02:00
"xml2js": "^0.5.0"
},
"devDependencies": {
"chai": "^4.3.10",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"sinon": "^17.0.1"
}
}