{
  "name": "reasonix",
  "version": "0.53.2",
  "description": "DeepSeek-native coding agent: cache-first loop, flash-first cost control, tool-call repair.",
  "type": "module",
  "bin": {
    "reasonix": "dist/cli/index.js",
    "dsnix": "dist/cli/index.js"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "data/deepseek-tokenizer.json.gz",
    "dashboard/index.html",
    "dashboard/app.css",
    "dashboard/dist",
    "patches",
    "scripts/postinstall.mjs",
    "README.md",
    "LICENSE"
  ],
  "workspaces": [
    "packages/*"
  ],
  "scripts": {
    "postinstall": "node scripts/postinstall.mjs",
    "build:dashboard": "npm --prefix dashboard run build",
    "build": "npm run build:dashboard && tsup && node scripts/copy-dashboard-vendor-css.mjs && node scripts/copy-tree-sitter-grammars.mjs",
    "dev": "tsx src/cli/index.ts",
    "chat": "tsx src/cli/index.ts chat",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:mutation": "stryker run",
    "lint": "biome check src tests",
    "lint:fix": "biome check --write src tests",
    "format": "biome format --write src tests",
    "typecheck": "tsc --noEmit && tsc --noEmit -p dashboard",
    "verify": "npm run build && npm run lint && npm run typecheck && npm run test --silent",
    "prepare": "simple-git-hooks || true",
    "prepublishOnly": "npm run lint && npm run typecheck && npm run build && npm run test",
    "pitch:pptx": "npx -y @marp-team/marp-cli pitch/pitch.md -o pitch/dist/pitch.pptx --allow-local-files",
    "pitch:pdf": "npx -y @marp-team/marp-cli pitch/pitch.md -o pitch/dist/pitch.pdf --allow-local-files",
    "pitch:html": "npx -y @marp-team/marp-cli pitch/pitch.md -o pitch/dist/pitch.html --allow-local-files",
    "pitch:watch": "npx -y @marp-team/marp-cli pitch/pitch.md --preview --watch --allow-local-files"
  },
  "simple-git-hooks": {
    "pre-commit": "npm run lint",
    "pre-push": "npm run verify"
  },
  "keywords": [
    "agent",
    "llm",
    "deepseek",
    "r1",
    "tool-use",
    "prompt-cache",
    "cli",
    "tui"
  ],
  "author": "esengine",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/esengine/DeepSeek-Reasonix.git"
  },
  "bugs": {
    "url": "https://github.com/esengine/DeepSeek-Reasonix/issues"
  },
  "homepage": "https://github.com/esengine/DeepSeek-Reasonix#readme",
  "engines": {
    "node": ">=22"
  },
  "dependencies": {
    "@alcalzone/ansi-tokenize": "^0.3.0",
    "auto-bind": "^5.0.1",
    "bidi-js": "^1.0.3",
    "chalk": "^5.3.0",
    "cli-boxes": "^4.0.1",
    "cli-highlight": "^2.1.11",
    "code-excerpt": "^4.0.0",
    "commander": "^12.1.0",
    "emoji-regex": "^10.4.0",
    "eventsource-parser": "^3.0.0",
    "get-east-asian-width": "^1.3.0",
    "iconv-lite": "^0.7.2",
    "ignore": "^7.0.5",
    "indent-string": "^5.0.0",
    "lodash-es": "^4.17.21",
    "node-html-parser": "^7.1.0",
    "picomatch": "^4.0.4",
    "react": "^19.2.6",
    "react-reconciler": "^0.32.0",
    "semver": "^7.6.3",
    "signal-exit": "^4.1.0",
    "slice-ansi": "^7.1.0",
    "stack-utils": "^2.0.6",
    "string-width": "^7.2.0",
    "strip-ansi": "^7.1.0",
    "supports-hyperlinks": "^4.0.0",
    "undici": "^8.2.0",
    "usehooks-ts": "^3.1.0",
    "web-tree-sitter": "^0.26.9",
    "wrap-ansi": "^9.0.0",
    "ws": "^8.20.1",
    "yoga-layout": "^3.2.1",
    "zod": "^4.4.1"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@reasonix/core-utils": "workspace:*",
    "@stryker-mutator/core": "^9.6.1",
    "@stryker-mutator/vitest-runner": "^9.6.1",
    "@testing-library/react": "^16.3.2",
    "@types/node": "^22.9.0",
    "@types/picomatch": "^4.0.3",
    "@types/react": "^19.2.14",
    "@types/ws": "^8.18.1",
    "@vitest/coverage-v8": "^2.1.5",
    "esbuild": "^0.21.5",
    "highlight.js": "^11.10.0",
    "htm": "^3.1.1",
    "ink-testing-library": "^4.0.0",
    "jsdom": "^29.1.1",
    "marked": "^15.0.12",
    "preact": "^10.22.0",
    "react-test-renderer": "^19.2.6",
    "simple-git-hooks": "^2.13.1",
    "strip-ansi": "^7.1.0",
    "tree-sitter-go": "^0.25.0",
    "tree-sitter-java": "^0.23.5",
    "tree-sitter-javascript": "^0.25.0",
    "tree-sitter-python": "^0.25.0",
    "tree-sitter-rust": "^0.24.0",
    "tree-sitter-typescript": "^0.23.2",
    "tsup": "^8.3.5",
    "tsx": "^4.19.2",
    "typescript": "^5.6.3",
    "uplot": "^1.6.31",
    "vitest": "^2.1.5"
  }
}
