{
  "name": "@cjhyy/code-shell",
  "version": "0.7.0",
  "description": "Code Shell — meta package. Installs @cjhyy/code-shell-core and @cjhyy/code-shell-tui.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "bin": {
    "code-shell": "./dist/cli.js"
  },
  "scripts": {
    "preinstall": "node scripts/check-node.cjs",
    "build": "bun run --filter '@cjhyy/code-shell-core' build && bun run --filter '@cjhyy/code-shell-tui' build && bun run scripts/build-meta.ts",
    "dev": "bun run dev:desktop",
    "dev:desktop": "bun run --filter '@cjhyy/code-shell-desktop' dev",
    "dev:tui": "CODE_SHELL_DEV=1 CODESHELL_UI_PERF=1 bun run packages/tui/src/cli/main.ts",
    "dev:bigtranscript": "bun run scripts/render-bigtranscript-dev.ts",
    "test": "bun test",
    "test:watch": "bun test --watch",
    "bench:render": "bun run bench/render-tail.bench.ts && bun run bench/render-streaming.bench.ts && bun run bench/render-spinner.bench.ts && bun run bench/render-wheel.bench.ts",
    "typecheck": "tsc --noEmit",
    "lint": "eslint packages/",
    "lint:engine-bypass": "bash scripts/check-no-engine-bypass.sh",
    "format": "prettier --write 'packages/**/*.ts'"
  },
  "dependencies": {
    "@cjhyy/code-shell-core": "0.7.0",
    "@cjhyy/code-shell-tui": "0.7.0"
  },
  "workspaces": [
    "packages/*"
  ],
  "overrides": {
    "react": "19.2.6"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cjhyy/codeshell.git"
  },
  "homepage": "https://github.com/cjhyy/codeshell#readme",
  "bugs": {
    "url": "https://github.com/cjhyy/codeshell/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=20.10"
  },
  "files": [
    "assets/codeshell-dog-icon.png",
    "assets/codeshell-promo.png",
    "assets/codeshell-desktop-screenshot-en.png",
    "docs/architecture/images/overview-runtime-layers.png",
    "dist",
    "scripts/check-node.cjs",
    "README.md",
    "README.zh-CN.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "keywords": [
    "ai",
    "agent",
    "orchestration",
    "coding-assistant",
    "cli",
    "claude-code",
    "mcp",
    "llm"
  ],
  "author": "maki maki",
  "license": "MIT",
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/lodash": "^4.17.24",
    "@types/lodash-es": "^4.17.12",
    "@types/node": "^22.12.0",
    "@types/react": "^19.2.14",
    "@types/semver": "^7.7.1",
    "chalk": "^5.4.1",
    "react": "19.2.6",
    "bun-types": "^1.3.14",
    "eslint": "^9.19.0",
    "prettier": "^3.4.2",
    "tsup": "^8.3.6",
    "typescript": "^5.7.3",
    "typescript-eslint": "^8.59.0"
  }
}
