-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
35 lines (35 loc) · 1.26 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
{
"name": "mcp-llm-bridge",
"version": "1.0.0",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"start": "ts-node src/main.ts",
"test": "jest --runInBand",
"test:ollama": "jest tests/ollama.test.ts --runInBand",
"test:filesystem": "jest tests/mcp/filesystem.test.ts --runInBand --detectOpenHandles --forceExit",
"test:flux": "jest tests/mcp/flux.test.ts --runInBand --detectOpenHandles --forceExit",
"test:brave": "jest tests/mcp/brave.test.ts --runInBand --detectOpenHandles --forceExit",
"test:github": "jest tests/mcp/github.test.ts --runInBand --detectOpenHandles --forceExit",
"test:memory": "jest tests/mcp/memory.test.ts --runInBand --detectOpenHandles --forceExit",
"test:gmail-drive": "jest tests/mcp/gmail-drive.test.ts --runInBand --detectOpenHandles --forceExit",
"reset-ollama": "ts-node src/ollama-manager.ts"
},
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^16.0.3",
"openai": "^4.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.11",
"@types/node": "^18.0.0",
"@types/node-fetch": "^2.6.9",
"jest": "^29.7.0",
"node-fetch": "^2.6.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}