-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 995 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 995 Bytes
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
{
"name": "fuel-mcp-server",
"version": "0.2.0",
"type": "module",
"main": "dist/cli.js",
"bin": {
"fuel-mcp-server": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "bun run src/cli.ts",
"start:stdio": "bun run src/cli.ts --transport stdio",
"start:http": "bun run src/cli.ts --transport http",
"index": "bun run src/indexer.ts",
"test": "bun test && bun run vitest run"
},
"devDependencies": {
"@types/bun": "^1.2.18",
"@types/express": "^5.0.3",
"@vitest/coverage-v8": "^3.2.4",
"esbuild": "^0.25.6",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",
"@types/markdown-it": "^14.1.2",
"@xenova/transformers": "^2.17.2",
"commander": "^14.0.0",
"express": "^5.1.0",
"markdown-it": "^14.1.0",
"onnxruntime-node": "^1.22.0-rev",
"vectra": "0.11.1",
"zod": "^3.23.8"
}
}