{
  "name": "oh-my-kimi",
  "version": "0.11.15",
  "description": "Multi-agent orchestration layer for Kimi Code CLI",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "omk": "dist/cli/omk.js"
  },
  "scripts": {
    "build": "node -e \"const fs=require('fs'); fs.rmSync('dist',{recursive:true,force:true});\" && tsc && node -e \"require('fs').chmodSync('dist/cli/omk.js', 0o755)\"",
    "build:explore": "cargo build -p omk-explore-harness",
    "build:full": "npm run build && npm run build:explore:release && npm run build:sparkshell",
    "build:explore:release": "node dist/scripts/build-explore-harness.js",
    "check:no-unused": "tsc -p tsconfig.no-unused.json",
    "clean:native-package-assets": "node dist/scripts/cleanup-explore-harness.js",
    "dev": "tsc --watch",
    "lint": "biome lint .",
    "prepack": "npm run build && npm run clean:native-package-assets",
    "setup": "node dist/cli/omk.js setup",
    "doctor": "node dist/cli/omk.js doctor",
    "ask:claude": "./src/scripts/ask-claude.sh",
    "ask:gemini": "./src/scripts/ask-gemini.sh",
    "test:explore": "cargo test -p omk-explore-harness && node --test dist/cli/__tests__/explore.test.js dist/hooks/__tests__/explore-routing.test.js dist/hooks/__tests__/explore-sparkshell-guidance-contract.test.js",
    "test:team:cross-rebase-smoke": "npm run build && node --test dist/team/__tests__/cross-rebase-smoke.test.js",
    "test:node": "node --test $(find dist -name '*.test.js')",
    "test:node:cross-platform": "node dist/scripts/run-test-files.js dist",
    "test": "npm run build && npm run test:node && node dist/scripts/generate-catalog-docs.js --check",
    "coverage:team-critical": "npm run build && c8 --all --src dist/team --src dist/state --include 'dist/team/**/*.js' --include 'dist/state/**/*.js' --exclude '**/__tests__/**' --reporter=text-summary --reporter=lcov --reporter=json-summary --report-dir coverage/team --check-coverage --lines=78 --functions=90 --branches=70 --statements=78 node --test $(find dist/team/__tests__ dist/state/__tests__ -name '*.test.js')",
    "coverage:team-critical:cross-platform": "npm run build && c8 --all --src dist/team --src dist/state --include 'dist/team/**/*.js' --include 'dist/state/**/*.js' --exclude '**/__tests__/**' --reporter=text-summary --reporter=lcov --reporter=json-summary --report-dir coverage/team --check-coverage --lines=78 --functions=90 --branches=70 --statements=78 node dist/scripts/run-test-files.js dist/team/__tests__ dist/state/__tests__",
    "coverage:ts:full": "npm run build && c8 --all --src dist --exclude '**/__tests__/**' --exclude 'dist/bin/**' --exclude 'dist/**/*.d.ts' --reporter=text-summary --reporter=lcov --reporter=json-summary --report-dir coverage/ts-full node --test $(find dist -name '*.test.js')",
    "coverage:ts:full:cross-platform": "npm run build && c8 --all --src dist --exclude '**/__tests__/**' --exclude 'dist/bin/**' --exclude 'dist/**/*.d.ts' --reporter=text-summary --reporter=lcov --reporter=json-summary --report-dir coverage/ts-full node dist/scripts/run-test-files.js dist",
    "test:compat:node": "npm run build && node --test dist/compat/__tests__/*.test.js",
    "test:compat:node:cross-platform": "npm run build && node dist/scripts/run-test-files.js dist/compat/__tests__",
    "test:compat:rust": "cargo build && OMK_COMPAT_TARGET=./target/debug/omx npm run test:compat:node",
    "build:sparkshell": "node dist/scripts/build-sparkshell.js",
    "smoke:packed-install": "node dist/scripts/smoke-packed-install.js",
    "test:sparkshell": "node dist/scripts/test-sparkshell.js",
    "test:reply-listener:live": "node dist/scripts/test-reply-listener-live.js",
    "postpack": "npm run clean:native-package-assets"
  },
  "engines": {
    "node": ">=20"
  },
  "files": [
    "Cargo.toml",
    "Cargo.lock",
    "dist/",
    "crates/",
    "agents/",
    "skills/",
    "prompts/",
    "templates/",
    "src/scripts/"
  ],
  "keywords": [
    "codex",
    "openai",
    "cli",
    "agents",
    "orchestration",
    "multi-agent"
  ],
  "author": "Yeachan Heo",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wang-h/oh-my-kimi.git"
  },
  "homepage": "https://github.com/wang-h/oh-my-kimi",
  "bugs": {
    "url": "https://github.com/wang-h/oh-my-kimi/issues"
  },
  "license": "MIT",
  "dependencies": {
    "@iarna/toml": "^2.2.5",
    "@modelcontextprotocol/sdk": "^1.26.0",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.4",
    "@types/node": "^25.5.0",
    "c8": "^11.0.0",
    "typescript": "^5.7.0"
  },
  "overrides": {
    "ajv": ">=8.18.0",
    "hono": ">=4.11.10"
  }
}
