cdn/package.json
Tom (Whity) 09441c495b Codebase Rewrite – Slack Bot, Backblaze B2 Migration, API v3
This update is a full rewrite of the codebase with major improvements 💪 :

- Slack Bot Integration – Added now built-in Slack bot!
- Backblaze B2 Migration – Switched from Vercel to B2, cutting storage / egress costs by around 90%.
- API v3 – New version includes file hashes, sizes, and additional metadata.
- API Token Requirement – ⚠️ All older API versions (v1, v2) now require authentication tokens. ⚠️

-- Deployor 💜
2025-01-18 03:49:27 +01:00

22 lines
639 B
JSON

{
"name": "cdn-v2-hackclub",
"version": "1.0.0",
"description": "Slack app to upload files to Backblaze B2 with unique URLs",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"@slack/bolt": "^4.2.0",
"@slack/web-api": "^7.8.0",
"backblaze-b2": "^1.3.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.1",
"p-limit": "^6.2.0",
"winston": "^3.17.0"
},
"author": "deployor",
"license": "MIT"
}