Files
remove-youtube-suggestions/server/package.json
T
Lawrence Hook 84b103e46b Migrate storage layer from flat files to SQLite
Replace file-per-record auth requests, file-per-hash rate limits, and
JSON blob subscription cache with a single SQLite database via
better-sqlite3. Consolidate duplicated email/IP rate limit code into
shared helpers. Add missing IP rate limit pruning to cleanup interval.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-01 23:47:51 -05:00

33 lines
796 B
JSON

{
"name": "rys-premium-server",
"version": "1.0.0",
"description": "Premium subscription server for Remove YouTube Suggestions extension",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"test": "node --test --test-concurrency=1 tests/*.test.js"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.1000.0",
"@aws-sdk/client-sesv2": "^3.1000.0",
"better-sqlite3": "^11.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"stripe": "^14.12.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"supertest": "^6.3.4"
},
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"fast-xml-parser": ">=5.3.8"
}
}