{
  "name": "kubun",
  "version": "0.10.0",
  "license": "see LICENSE.md",
  "description": "Kubun CLI",
  "keywords": [],
  "type": "module",
  "engines": {
    "node": ">=22.0.0"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "/bin",
    "/dist",
    "/oclif.manifest.json"
  ],
  "bin": {
    "kubun": "./bin/run.js"
  },
  "oclif": {
    "bin": "kubun",
    "dirname": "kubun",
    "commands": "./dist/commands",
    "plugins": [
      "@oclif/plugin-help"
    ],
    "topicSeparator": " "
  },
  "dependencies": {
    "@enkaku/codec": "^0.16.0",
    "@enkaku/token": "^0.16.0",
    "@logtape/logtape": "^2.1.1",
    "@mokei/context-server": "^0.7.0",
    "@oclif/core": "^4.11.4",
    "@oclif/plugin-help": "^6.2.49",
    "@oclif/plugin-plugins": "^5.4.69",
    "graphql": "^16.13.2",
    "ora": "^9.4.0",
    "@kubun/client": "^0.10.0",
    "@kubun/db-node-sqlite": "^0.10.0",
    "@kubun/db-postgres": "^0.10.0",
    "@kubun/graphql": "^0.10.0",
    "@kubun/engine": "^0.10.0",
    "@kubun/plugin-http": "^0.10.0",
    "@kubun/http-client": "^0.10.0",
    "@kubun/plugin-p2p": "^0.10.0",
    "@kubun/mcp": "^0.10.0",
    "@kubun/logger": "^0.10.0",
    "@kubun/plugin-rpc": "^0.10.0",
    "@kubun/protocol": "^0.10.0"
  },
  "devDependencies": {
    "@oclif/test": "^4.1.17",
    "oclif": "^4.23.8",
    "ts-node": "^10",
    "typescript": "^6.0.3"
  },
  "scripts": {
    "kubun": "./bin/dev.js",
    "build": "del dist && tsc -b",
    "posttest": "pnpm run lint",
    "test:types": "tsc --noEmit",
    "test:unit": "OCLIF_TEST_ROOT=. vitest run",
    "test": "pnpm run test:types && pnpm run test:unit",
    "version": "oclif readme && git add README.md"
  }
}