{
  "name": "anki-ai",
  "version": "1.5.0",
  "description": "MCP server and CLI for Anki integration via Anki-Connect",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "anki-ai": "dist/main.js"
  },
  "files": [
    "dist",
    "bin",
    "src",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/briansunter/anki-ai.git"
  },
  "scripts": {
    "start": "bun bin/anki-ai.ts mcp",
    "build": "tsc && chmod +x dist/main.js",
    "prepublishOnly": "tsc && chmod +x dist/main.js",
    "dev": "bun --watch bin/anki-ai.ts mcp",
    "test": "bun test",
    "test:e2e": "bun test tests/*.test.ts",
    "test:e2e:all": "bun tests/run-tests.ts",
    "test:e2e:basic": "bun test tests/test-anki-connect.test.ts",
    "test:e2e:tags": "bun test tests/test-tags.test.ts",
    "test:e2e:fixes": "bun test tests/test-fixes.test.ts",
    "test:e2e:real": "bun test tests/test-real-operations.test.ts",
    "test:e2e:pagination": "bun test tests/test-pagination.test.ts",
    "test:e2e:queue": "bun test tests/test-queue-priority.test.ts",
    "test:e2e:utils": "bun test tests/test-utils.test.ts",
    "test:e2e:edge": "bun test tests/test-edge-cases.test.ts",
    "test:e2e:coverage": "bun test tests/*.test.ts --coverage",
    "test:e2e:watch": "bun test --watch tests/*.test.ts",
    "test:coverage": "bun scripts/check-coverage.ts",
    "typecheck": "tsc --noEmit",
    "lint": "biome check src/ bin/",
    "lint:fix": "biome check --write src/ bin/"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^0.5.0",
    "commander": "^14.0.3",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.14",
    "@types/bun": "latest",
    "typescript": "^5.3.3"
  },
  "peerDependencies": {
    "typescript": "^5"
  },
  "keywords": [
    "mcp",
    "anki",
    "anki-connect",
    "spaced-repetition",
    "cli"
  ],
  "engines": {
    "node": ">=18.0.0",
    "bun": ">=1.0.0"
  },
  "author": "",
  "license": "MIT"
}
