-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.67 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
{
"name": "@klever/klever-connect-mcp",
"version": "1.0.2",
"description": "MCP server for klever-connect — Unified JavaScript/TypeScript SDK for the Klever blockchain",
"type": "module",
"main": "dist/index.js",
"bin": {
"klever-connect-mcp": "dist/index.js"
},
"files": [
"dist",
"knowledge",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"mcp": "MODE=mcp node dist/index.js",
"dev:mcp": "MODE=mcp tsx watch src/index.ts",
"public": "MODE=public node dist/index.js",
"dev:public": "MODE=public tsx watch src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"test": "vitest run --passWithNoTests",
"validate": "pnpm run typecheck && pnpm run lint && pnpm run test",
"prepublishOnly": "pnpm run build"
},
"engines": {
"node": ">=18.14.0"
},
"packageManager": "pnpm@10.12.4",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^22.0.0",
"eslint": "^9.20.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.22.0",
"vitest": "^3.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klever-io/mcp-klever-connect.git"
},
"author": "",
"license": "ISC",
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/klever-io/mcp-klever-connect/issues"
},
"homepage": "https://github.com/klever-io/mcp-klever-connect#readme"
}