{
  "name": "@zeeg/dex",
  "version": "0.16.0",
  "description": "Task tracking tool with MCP server and CLI interfaces",
  "repository": {
    "type": "git",
    "url": "https://github.com/dcramer/dex"
  },
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "bin": {
    "dex": "dist/index.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/index.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "release": "pnpm test && pnpm build && npm version",
    "prepare": "simple-git-hooks"
  },
  "packageManager": "pnpm@10.28.0",
  "engines": {
    "node": ">=24.0.0",
    "bun": ">=1.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0",
    "@octokit/rest": "^22.0.1",
    "@shortcut/client": "^3.1.0",
    "nanoid": "^5.0.0",
    "smol-toml": "^1.6.0",
    "zod": "^3.23.0"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@vitest/coverage-v8": "^4.0.18",
    "lint-staged": "^16.2.7",
    "nock": "^14.0.10",
    "prettier": "^3.8.1",
    "simple-git-hooks": "^2.13.1",
    "typescript": "^5.5.0",
    "vitest": "^4.0.18"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm tsc --noEmit && pnpm lint-staged"
  },
  "lint-staged": {
    "*.{js,ts,json,md}": "prettier --write"
  }
}
