mirror of
https://github.com/whekin/household-bot.git
synced 2026-03-31 13:44:03 +00:00
* feat(WHE-15): bootstrap bun workspace with app and package scaffolds * chore(WHE-17): switch workspace typecheck to tsgo * chore(WHE-16): configure oxlint and oxfmt no-semicolon style * chore: address CodeRabbit review feedback * chore: apply coderabbit fixes and add review script * docs: add ADR decision metadata
28 lines
809 B
JSON
28 lines
809 B
JSON
{
|
|
"name": "kojori-tg-bot",
|
|
"private": true,
|
|
"type": "module",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "bun run --filter '*' build",
|
|
"typecheck": "bun run --filter '*' typecheck",
|
|
"test": "bun run --filter '*' test",
|
|
"lint": "oxlint .",
|
|
"lint:fix": "oxlint --fix .",
|
|
"format": "bunx oxfmt .",
|
|
"format:check": "bunx oxfmt --check .",
|
|
"review:coderabbit": "coderabbit --prompt-only --base main || ~/.local/bin/coderabbit --prompt-only --base main",
|
|
"dev:bot": "bun run --filter @household/bot dev",
|
|
"dev:miniapp": "bun run --filter @household/miniapp dev"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "1.3.10",
|
|
"@typescript/native-preview": "7.0.0-dev.20260304.1",
|
|
"oxlint": "^1.51.0",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|