{
  "name": "kubun",
  "version": "0.3.2",
  "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",
      "@oclif/plugin-plugins"
    ],
    "topicSeparator": " ",
    "topics": {
      "hello": {
        "description": "Say hello to the world and others"
      }
    }
  },
  "dependencies": {
    "@enkaku/async": "^0.12.2",
    "@enkaku/codec": "^0.12.0",
    "@enkaku/http-server-transport": "^0.12.0",
    "@enkaku/server": "^0.12.0",
    "@enkaku/token": "^0.12.0",
    "@hono/node-server": "^1.18.0",
    "@oclif/core": "^4.5.2",
    "@oclif/plugin-help": "^6.2.32",
    "@oclif/plugin-plugins": "^5.4.46",
    "get-port": "^7.1.0",
    "graphql": "^16.11.0",
    "ora": "^8.1.1",
    "@kubun/client": "^0.3.6",
    "@kubun/db": "^0.3.4",
    "@kubun/db-postgres": "^0.3.2",
    "@kubun/db-sqlite": "^0.3.3",
    "@kubun/graphql": "^0.3.9",
    "@kubun/http-client": "^0.3.0",
    "@kubun/protocol": "^0.3.5",
    "@kubun/server": "^0.3.7"
  },
  "devDependencies": {
    "@oclif/test": "^4.1.13",
    "oclif": "^4.22.5",
    "shx": "^0.4.0",
    "ts-node": "^10",
    "typescript": "^5.9.2"
  },
  "scripts": {
    "kubun": "./bin/dev.js",
    "build": "shx rm -rf dist && tsc -b",
    "posttest": "pnpm run lint",
    "test:types": "tsc --noEmit --skipLibCheck",
    "test:unit": "OCLIF_TEST_ROOT=. node --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
    "test": "pnpm run test:types && pnpm run test:unit",
    "version": "oclif readme && git add README.md"
  }
}