managarten/services/news-ingester/package.json
Till JS 68d1bda7e5 fix(news-ingester): drop unused @mana/shared-hono workspace dep
Was copied verbatim from mana-credits' template but not actually
imported anywhere in src/. Removing it lets the Docker build's bun
install resolve from npm only — workspace:* refs need the full
monorepo context which the Dockerfile doesn't copy.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-09 16:11:58 +02:00

26 lines
584 B
JSON

{
"name": "@mana/news-ingester",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@mozilla/readability": "^0.5.0",
"drizzle-orm": "^0.38.3",
"hono": "^4.7.0",
"jsdom": "^25.0.1",
"postgres": "^3.4.5",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"drizzle-kit": "^0.30.4",
"typescript": "^5.9.3"
}
}