package.json

 1{
 2  "name": "rumilo",
 3  "version": "0.1.0",
 4  "description": "CLI that dispatches AI research subagents for web and git repository exploration",
 5  "author": "",
 6  "license": "MIT",
 7  "type": "module",
 8  "bin": {
 9    "rumilo": "./dist/index.js"
10  },
11  "files": [
12    "dist/",
13    "README.md"
14  ],
15  "scripts": {
16    "dev": "bun src/cli/index.ts",
17    "build": "bun build src/cli/index.ts --outdir dist --target=node",
18    "start": "bun dist/cli/index.js",
19    "lint": "bun run --silent typecheck",
20    "test": "bun test",
21    "typecheck": "tsc --noEmit",
22    "prepublishOnly": "bun run build"
23  },
24  "dependencies": {
25    "@mariozechner/pi-agent-core": "^0.52.8",
26    "@mariozechner/pi-ai": "^0.52.8",
27    "@sinclair/typebox": "^0.32.14",
28    "@tabstack/sdk": "^2.1.0",
29    "kagi-ken": "github:czottmann/kagi-ken#1.2.0",
30    "simple-git": "^3.25.0",
31    "toml": "^3.0.0"
32  },
33  "devDependencies": {
34    "@types/node": "^22.13.4",
35    "bun-types": "^1.0.24",
36    "typescript": "^5.7.3"
37  }
38}