Skip to content

Commit 671ad9a

Browse files
committed
Add package.json
1 parent 8d9c8ef commit 671ad9a

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

package.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "leetcode-mcp-server",
3+
"version": "1.0.0",
4+
"description": "Model Context Protocol server for LeetCode using GraphQL",
5+
"type": "module",
6+
"main": "dist/index.js",
7+
"scripts": {
8+
"build": "tsc",
9+
"start": "node dist/index.js",
10+
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
11+
"lint": "eslint src --ext .ts",
12+
"test": "jest"
13+
},
14+
"dependencies": {
15+
"@modelcontextprotocol/sdk": "^1.7.0",
16+
"axios": "^1.7.2",
17+
"apicache": "^1.6.3",
18+
"zod": "^3.22.4",
19+
"glob": "^10.3.10",
20+
"rimraf": "^5.0.5"
21+
},
22+
"devDependencies": {
23+
"@types/apicache": "^1.6.6",
24+
"@types/node": "^20.11.27",
25+
"@typescript-eslint/eslint-plugin": "^7.3.1",
26+
"@typescript-eslint/parser": "^7.3.1",
27+
"eslint": "^9.0.0-alpha.2",
28+
"jest": "^29.7.0",
29+
"ts-jest": "^29.1.2",
30+
"tsc-watch": "^6.0.4",
31+
"typescript": "^5.4.3"
32+
}
33+
}

0 commit comments

Comments
 (0)