{
  "name": "deepthonk",
  "version": "0.3.1",
  "mcpName": "io.github.linxule/deepthonk",
  "description": "Provider-neutral OpenDeepThink CLI and MCP server. Population-based reasoning via pairwise judging and Bradley-Terry ranking.",
  "license": "MIT",
  "author": "Xule Lin",
  "homepage": "https://github.com/linxule/deepthonk#readme",
  "bugs": {
    "url": "https://github.com/linxule/deepthonk/issues"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "opendeepthink",
    "reasoning",
    "bradley-terry",
    "test-time-compute",
    "deepseek",
    "cli",
    "llm",
    "agent"
  ],
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "package.json",
    "README.md",
    "LICENSE"
  ],
  "bin": {
    "deepthonk": "dist/index.js",
    "dt": "dist/index.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/linxule/deepthonk.git",
    "directory": "packages/cli"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=22.13"
  },
  "dependencies": {
    "commander": "^15.0.0",
    "yaml": "^2.7.1",
    "zod": "^4.6.4",
    "@deepthonk/core": "0.3.1",
    "@deepthonk/mcp": "0.3.1",
    "@deepthonk/providers": "0.3.1"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json && chmod +x dist/index.js",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "deepthonk": "tsx src/index.ts"
  }
}