-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
121 lines (121 loc) · 3.5 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@langchain/mcp-adapters",
"version": "0.4.2",
"description": "LangChain.js adapters for Model Context Protocol (MCP)",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"type": "module",
"packageManager": "yarn@3.5.1",
"repository": {
"type": "git",
"url": "git+https://github.com/langchain-ai/langchainjs-mcp-adapters.git"
},
"homepage": "https://github.com/langchain-ai/langchainjs-mcp-adapters#readme",
"bugs": {
"url": "https://github.com/langchain-ai/langchainjs-mcp-adapters/issues"
},
"scripts": {
"build": "run-s \"build:main\" \"build:examples\"",
"build:main": "yarn lc_build --create-entrypoints --pre --tree-shaking",
"build:examples": "tsc -p tsconfig.examples.json",
"clean": "rm -rf dist/ dist-cjs/ .turbo/",
"format": "prettier --config .prettierrc --write \"src/**/*.ts\" \"examples/**/*.ts\"",
"format:check": "prettier --config .prettierrc --check \"src\" \"examples/**/*.ts\"",
"lint": "yarn lint:eslint && yarn lint:dpdm",
"lint:dpdm": "dpdm --exit-code circular:1 --no-warning --no-tree src/**/*.ts examples/**/*.ts",
"lint:eslint": "NODE_OPTIONS=--max-old-space-size=4096 eslint --cache --ext .ts,.js src/ examples/",
"lint:fix": "yarn lint:eslint --fix && yarn lint:dpdm",
"prepack": "yarn build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --ignore-pattern 'dist/**' --ignore-pattern 'examples/**'",
"prettier --write"
]
},
"keywords": [
"langchain",
"mcp",
"model-context-protocol",
"ai",
"tools"
],
"author": "Ravi Kiran Vemula",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"debug": "^4.4.0",
"zod": "^3.24.2"
},
"peerDependencies": {
"@langchain/core": "^0.3.44"
},
"optionalDependencies": {
"extended-eventsource": "^1.x"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@langchain/core": "^0.3.44",
"@langchain/langgraph": "^0.2.62",
"@langchain/openai": "^0.5.5",
"@langchain/scripts": "^0.1.3",
"@tsconfig/recommended": "^1.0.8",
"@types/debug": "^4.1.12",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitest/coverage-v8": "^3.1.1",
"dotenv": "^16.4.7",
"dpdm": "^3.12.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-instanceof": "^1.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vitest": "^0.5.4",
"eventsource": "^3.0.6",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"release-it": "^17.6.0",
"rollup": "^4.39.0",
"ts-node": "^10.9.2",
"typescript": "^4.9.5 || ^5.4.5",
"typescript-eslint": "^8.29.0",
"vitest": "^3.1.1"
},
"resolutions": {
"typescript": "4.9.5",
"uuid": "^11.0.0"
},
"engines": {
"node": ">=18"
},
"directories": {
"example": "examples"
},
"exports": {
".": {
"types": {
"import": "./index.d.ts",
"require": "./index.d.cts",
"default": "./index.d.ts"
},
"import": "./index.js",
"require": "./index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"index.cjs",
"index.js",
"index.d.ts",
"index.d.cts"
]
}