mirror of
https://github.com/lawrencehook/remove-youtube-suggestions.git
synced 2026-07-25 06:54:31 +00:00
84b103e46b
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>
33 lines
796 B
JSON
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"
|
|
}
|
|
}
|