- Wallabag v2 API compatible (OAuth2, entries CRUD, tags) - Express + SQLite (better-sqlite3), zero extra deps - Gated web UI with session auth - PWA: service worker, manifest, offline support - Mobile-first design, dark mode, FAB + modal
15 lines
290 B
JSON
15 lines
290 B
JSON
{
|
|
"name": "bagg",
|
|
"version": "0.1.0",
|
|
"description": "Wallabag-compatible read-later service",
|
|
"main": "server.js",
|
|
"engines": { "node": ">=20" },
|
|
"scripts": {
|
|
"start": "node server.js"
|
|
},
|
|
"dependencies": {
|
|
"better-sqlite3": "^9.6.0",
|
|
"express": "^4.19.2"
|
|
}
|
|
}
|