-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.5 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
{
"name": "encoder-thinking-mcp",
"version": "1.0.0",
"description": "An encoder-decoder training reasoning engine that helps LLMs think like ML engineers and guide step-by-step encoder-decoder development.",
"type": "module",
"main": "dist/index.js",
"module": "./src/index.ts",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx @smithery/cli build",
"dev": "npx @smithery/cli dev",
"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": {
"@smithery/cli": "^1.0.0",
"@types/diff-match-patch": "^1.0.36",
"@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",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"mcp",
"reasoning",
"beam-search",
"monte-carlo-tree-search",
"ai",
"search",
"machine-learning",
"encoder-decoder",
"neural-networks",
"pytorch",
"tensorflow",
"keras"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
}
}