{
  "name": "kubun",
  "version": "0.12.0",
  "description": "Kubun CLI",
  "keywords": [],
  "license": "see LICENSE.md",
  "type": "module",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "bin": {
    "kubun": "./bin/run.js"
  },
  "files": [
    "/bin",
    "/lib"
  ],
  "dependencies": {
    "@hono/node-server": "^2.1.0",
    "@kokuin/token": "^0.3.0",
    "@logtape/logtape": "^2.3.0",
    "@mokei/context-server": "^0.11.0",
    "@sozai/codec": "^0.4.0",
    "@tejika/cli": "^0.4.0",
    "@tejika/env": "^0.4.0",
    "@tejika/ui": "^0.4.0",
    "commander": "^15.0.0",
    "graphql": "^16.14.2",
    "ink": "^7.1.1",
    "react": "19.2.3",
    "@kubun/db": "^0.12.0",
    "@kubun/client": "^0.12.0",
    "@kubun/db-node-sqlite": "^0.12.0",
    "@kubun/graphql": "^0.12.0",
    "@kubun/http-client": "^0.12.0",
    "@kubun/logger": "^0.12.0",
    "@kubun/db-postgres": "^0.12.0",
    "@kubun/mcp": "^0.12.0",
    "@kubun/hub": "^0.12.0",
    "@kubun/engine": "^0.12.0",
    "@kubun/plugin-p2p": "^0.12.0",
    "@kubun/plugin-http": "^0.12.0",
    "@kubun/protocol": "^0.12.0",
    "@kubun/plugin-rpc": "^0.12.0"
  },
  "devDependencies": {
    "ink-testing-library": "^4.0.0",
    "@kubun/store-graph": "^0.12.0",
    "@kubun/id": "^0.12.0",
    "@kubun/store-p2p": "^0.12.0"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "scripts": {
    "build": "pnpm run build:clean && pnpm run build:js && pnpm run build:types",
    "build:clean": "del lib",
    "build:js": "swc src -d ./lib --config-file ../../node_modules/@kigu/dev/swc.json --strip-leading-paths",
    "build:types": "tsc --emitDeclarationOnly --skipLibCheck",
    "build:types:ci": "tsc --emitDeclarationOnly --skipLibCheck --declarationMap false",
    "kubun": "./bin/dev.js",
    "test": "pnpm run test:types && pnpm run test:unit",
    "test:types": "tsc --noEmit --skipLibCheck -p tsconfig.test.json",
    "test:unit": "vitest run"
  }
}