{
  "name": "anki-mcp-server",
  "version": "0.1.4",
  "description": "A Model Context Protocol (MCP) server that enables LLMs to interact with Anki flashcard software through AnkiConnect",
  "type": "module",
  "bin": {
    "anki-mcp-server": "dist/index.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "prepare": "husky",
    "prebuild": "node -p \"'export const MCP_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/_version.ts",
    "build": "tsup",
    "watch": "tsup --watch",
    "format": "biome format . --write",
    "lint": "biome lint .",
    "check": "biome check --apply .",
    "inspector": "npx @modelcontextprotocol/inspector build/index.js",
    "test": "jest --runInBand --detectOpenHandles",
    "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
    "test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
    "test:language": "node test-language.js"
  },
  "lint-staged": {
    "src/**/*.{js,jsx,ts,tsx}": [
      "biome format --write",
      "git add"
    ]
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "1.7.0",
    "axios": "1.8.4",
    "yanki-connect": "2.2.0"
  },
  "devDependencies": {
    "@biomejs/biome": "1.5.3",
    "@jest/globals": "29.7.0",
    "@types/jest": "29.5.14",
    "@types/node": "20.17.25",
    "axios-mock-adapter": "1.22.0",
    "husky": "^9.1.7",
    "jest": "29.7.0",
    "lint-staged": "^15.5.0",
    "ts-jest": "29.2.6",
    "ts-node": "^10.9.2",
    "tsup": "8.4.0",
    "typescript": "5.8.2"
  },
  "main": "build/index.js",
  "keywords": [
    "anki",
    "mcp",
    "llm",
    "flashcards",
    "ankiconnect",
    "model-context-protocol"
  ],
  "author": "nailuoGG",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nailuoGG/anki-mcp-server.git"
  },
  "bugs": {
    "url": "https://github.com/nailuoGG/anki-mcp-server/issues"
  },
  "homepage": "https://github.com/nailuoGG/anki-mcp-server#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
