Files
nanobot-ts/package.json
2026-03-13 21:16:00 -06:00

43 lines
1.0 KiB
JSON

{
"name": "nanobot-ts",
"private": true,
"type": "module",
"module": "index.ts",
"scripts": {
"nanobot": "bun run index.ts",
"dev": "bun --watch run index.ts",
"typecheck": "tsc --noEmit",
"fmt": "oxfmt --check",
"fmt:fix": "oxfmt",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"checks": "bun run lint && bun run fmt"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.58",
"@ai-sdk/google": "^3.0.43",
"@ai-sdk/openai": "^3.0.41",
"@mozilla/readability": "^0.6.0",
"@openrouter/ai-sdk-provider": "^2.3.0",
"ai": "^6.0.116",
"ai-sdk-ollama": "^3.8.0",
"commander": "^14.0.3",
"cron-parser": "^5.5.0",
"js-tiktoken": "^1.0.21",
"jsonrepair": "^3.13.3",
"node-html-parser": "^7.1.0",
"picocolors": "^1.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest",
"@types/mozilla__readability": "^0.4.2",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"oxlint-tsgolint": "^0.16.0"
},
"peerDependencies": {
"typescript": "^5"
}
}