29 lines
756 B
JSON
29 lines
756 B
JSON
{
|
|
"name": "homefeed-backend",
|
|
"version": "1.0.0",
|
|
"description": "Homefeed backend — ingestion, clustering, synthesis, and the public/admin API",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "tsx watch --env-file=.env src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node --experimental-sqlite dist/index.js",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"license": "UNLICENSED",
|
|
"dependencies": {
|
|
"@fastify/cookie": "^11.1.1",
|
|
"@fastify/cors": "^11.3.0",
|
|
"@mozilla/readability": "^0.6.0",
|
|
"fastify": "^5.10.0",
|
|
"jsdom": "^29.1.1",
|
|
"rss-parser": "^3.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jsdom": "^28.0.3",
|
|
"@types/node": "^26.1.1",
|
|
"tsx": "^4.23.0",
|
|
"typescript": "^7.0.2"
|
|
}
|
|
}
|