- GET /api/extension/download — streams chrome-extension/ as a .zip using archiver
- Admin → 🧩 Extension tab with:
- One-click download button (fetches zip via auth'd API, triggers browser save)
- 5-step install guide: unzip, chrome://extensions, developer mode, load unpacked, configure
- UDP port-forwarding reminder note
- Added archiver dependency to package.json
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
587 B
JSON
22 lines
587 B
JSON
{
|
|
"name": "dragon-wind",
|
|
"version": "1.0.0",
|
|
"description": "Dragon Wind — Fast dual-mode broadcast file uploader (HTTP + UDP) with S3 integration",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "node --watch server.js"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.650.0",
|
|
"@aws-sdk/lib-storage": "^3.650.0",
|
|
"@aws-sdk/s3-request-presigner": "^3.650.0",
|
|
"@smithy/node-http-handler": "^3.2.0",
|
|
"archiver": "^7.0.1",
|
|
"express": "^4.21.0",
|
|
"multer": "^1.4.5-lts.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|