{
  "name": "@kokoro.ws/mcp",
  "version": "0.2.0",
  "type": "module",
  "private": false,
  "license": "PolyForm Noncommercial License 1.0.0",
  "homepage": "https://docs.kokoro.ws/introduction/using-kokoro/mcp",
  "repository": {
    "type": "git",
    "url": "https://github.com/wosherco/kokoro.git",
    "directory": "apps/mcp"
  },
  "bin": {
    "kokoro-mcp": "./dist/index.js"
  },
  "dependencies": {
    "@clack/prompts": "0.10.1",
    "@modelcontextprotocol/sdk": "^1.10.2",
    "@orpc/client": "1.3.0",
    "superjson": "2.2.1",
    "zod": "^3.25.7",
    "commander": "^13.1.0"
  },
  "files": [
    "dist",
    "package.json"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "start": "NODE_ENV=development bun run bin/index.ts",
    "start:dist": "node dist/index.js",
    "build": "NODE_ENV=production bun run bundle.ts",
    "build:dev": "NODE_ENV=development bun run bundle.ts",
    "clean": "rm -rf .turbo node_modules",
    "format": "biome format .",
    "format:fix": "biome format --write .",
    "lint": "biome lint .",
    "lint:fix": "biome lint --write .",
    "check": "biome check .",
    "check:fix": "biome check --write .",
    "typecheck": "tsc --noEmit --emitDeclarationOnly false",
    "prepublish": "bun run prepublish.ts",
    "inspector": "bunx @modelcontextprotocol/inspector node dist/index.js",
    "inspector:dev": "pnpm build:dev && bunx @modelcontextprotocol/inspector node dist/index.js"
  }
}