-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.04 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "aisdk-mcp-bridge",
"version": "0.1.0",
"description": "Bridge between Model Context Protocol (MCP) servers and AI SDK tools",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"test:twitter": "tsx examples/test-twitter.ts",
"test:playwright": "tsx examples/test-playwright.ts",
"test:firecrawl": "tsx examples/test-firecrawl.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"ai",
"mcp",
"ai-sdk",
"bridge",
"tools",
"typescript"
],
"author": "Ravi Kiran (https://github.com/vrknetha)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vrknetha/aisdk-mcp-bridge.git"
},
"bugs": {
"url": "https://github.com/vrknetha/aisdk-mcp-bridge/issues"
},
"homepage": "https://github.com/vrknetha/aisdk-mcp-bridge#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.4.1",
"ai": "^4.1.10",
"axios": "^1.6.7",
"zod": "^3.22.4"
},
"peerDependencies": {
"ai": "^4.1.10"
},
"devDependencies": {
"@ai-sdk/google": "^1.0.0",
"@openrouter/ai-sdk-provider": "^0.2.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"express": "^4.18.2",
"prettier": "^3.2.5",
"tsx": "^4.19.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
}
}