-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.09 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@sperekrestova/interactive-leetcode-mcp",
"description": "Interactive LeetCode MCP server with authorization and submission capabilities for seamless problem-solving with Claude",
"version": "3.2.0",
"mcpName": "io.github.SPerekrestova/interactive-leetcode-mcp",
"author": "SPerekrestova",
"main": "./build/index.js",
"module": "./src/index.ts",
"keywords": [
"leetcode",
"lc",
"mcp",
"programming",
"algorithm",
"authorization",
"submission",
"claude",
"practice"
],
"scripts": {
"test": "vitest run | pino-pretty",
"test:unit": "vitest run tests/mcp tests/utils tests/services tests/tools",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e",
"test:all": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test:types": "tsc -p tsconfig.test.json",
"build": "tsc && chmod u+x build/index.js",
"start": "node build/index.js",
"dev": "tsc-watch --onSuccess \"node build/index.js\"",
"format": "prettier --write .",
"prepare": "husky",
"sync-version": "node scripts/sync-version.cjs",
"prepublishOnly": "npm run sync-version && npm run build"
},
"bin": {
"interactive-leetcode-mcp": "build/index.js"
},
"type": "module",
"files": [
"build"
],
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SPerekrestova/interactive-leetcode-mcp.git"
},
"bugs": {
"url": "https://github.com/SPerekrestova/interactive-leetcode-mcp/issues"
},
"homepage": "https://github.com/SPerekrestova/interactive-leetcode-mcp#readme",
"types": "./build/index.d.ts",
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{md,json,yml,yaml,html,css}": [
"prettier --write"
]
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"axios": "^1.15.0",
"leetcode-query": "^2.0.0",
"minimist": "^1.2.8",
"pino": "^10.3.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/minimist": "^1.2.5",
"@types/node": "^22.14.0",
"@vitest/coverage-v8": "^3.2.4",
"esbuild": "^0.25.2",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"pino-pretty": "^13.0.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"tsc-watch": "6.2.1",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"vite": "^6.3.5",
"vitest": "^3.1.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.40.1"
}
}