package.json•759 B
{
"name": "kanta-mcp-server",
"version": "1.0.0",
"description": "MCP server for Kanta API",
"main": "dist/index.js",
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "tsx --watch src/index.ts",
"build": "npm run build:http",
"build:http": "smithery build",
"start": "npm run start:http",
"start:http": "node .smithery/index.cjs",
"watch": "tsx --watch src/index.ts"
},
"keywords": [
"mcp",
"kanta",
"api",
"server"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2",
"zod": "^3.25.46"
},
"devDependencies": {
"@smithery/cli": "^1.3.0",
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}