-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.16 KB
/
package.json
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
{
"name": "mcp-reasoner",
"version": "1.0.0",
"description": "MCP Reasoner with multiple reasoning strategies including Beam Search and Monte Carlo Tree Search",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"clean": "shx rm -rf dist",
"prebuild": "npm run clean",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "*",
"chalk": "^5.3.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"keywords": [
"mcp",
"reasoning",
"beam-search",
"monte-carlo-tree-search",
"ai",
"search"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
}
}