mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 04:21:09 +02:00
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>
26 lines
584 B
JSON
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"
|
|
}
|
|
}
|