package.json•1.61 kB
{
"name": "@mcpfun/mcp-server-leetcode",
"version": "1.0.1",
"description": "Model Context Protocol server for LeetCode using GraphQL",
"type": "module",
"main": "index.js",
"bin": {
"mcp-server-leetcode": "./dist/index.js"
},
"files": [
"dist",
"index.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"lint": "eslint src --ext .ts",
"test": "jest",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"axios": "^1.7.2",
"apicache": "^1.6.3",
"zod": "^3.22.4",
"glob": "^10.3.10",
"rimraf": "^5.0.5"
},
"devDependencies": {
"@types/apicache": "^1.6.6",
"@types/node": "^20.11.27",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsc-watch": "^6.0.4",
"typescript": "^5.4.3"
},
"keywords": [
"leetcode",
"mcp",
"model-context-protocol",
"ai",
"tools",
"llm"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/doggybee/mcp-server-leetcode.git"
},
"bugs": {
"url": "https://github.com/doggybee/mcp-server-leetcode/issues"
},
"homepage": "https://github.com/doggybee/mcp-server-leetcode#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}