package.json•838 B
{
"name": "anki-mcp-server",
"version": "1.0.0",
"description": "MCP server for Anki that uses the AnkiConnect API",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"lint": "eslint src/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"anki",
"mcp",
"model-context-protocol",
"ankiconnect",
"llm"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.1.0",
"axios": "^1.6.2"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}