This repository was archived by the owner on May 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.17 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 4.17 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
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
122
123
124
125
126
127
128
129
130
{
"name": "mcp-use",
"type": "module",
"version": "0.1.17",
"packageManager": "pnpm@10.6.1",
"description": "A utility library for integrating Model Context Protocol (MCP) with LangChain, Zod, and related tools. Provides helpers for schema conversion, event streaming, and SDK usage.",
"author": "Zane",
"license": "MIT",
"homepage": "https://github.com/mcp-use/mcp-use-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mcp-use/mcp-use-ts.git"
},
"bugs": {
"url": "https://github.com/mcp-use/mcp-use-ts/issues"
},
"keywords": [
"MCP",
"Model Context Protocol",
"LangChain",
"Zod",
"schema",
"SDK",
"eventsource",
"AI",
"utility",
"typescript"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest",
"test:run": "vitest run",
"test:simple": "vitest run tests/stream_events_simple.test.ts",
"test:integration": "vitest run tests/stream_events.test.ts",
"watch": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"fmt": "eslint --fix",
"release": "npm version patch --tag-version-prefix=v && git push --follow-tags",
"release:minor": "npm version minor --tag-version-prefix=v && git push --follow-tags",
"release:major": "npm version major --tag-version-prefix=v && git push --follow-tags",
"prepare": "husky",
"example:airbnb": "npm run build && node dist/examples/airbnb_use.js",
"example:browser": "npm run build && node dist/examples/browser_use.js",
"example:chat": "npm run build && node dist/examples/chat_example.js",
"example:stream": "npm run build && node dist/examples/stream_example.js",
"example:stream_events": "npm run build && node dist/examples/stream_events_example.js",
"example:ai_sdk": "npm run build && node dist/examples/ai_sdk_example.js",
"example:filesystem": "npm run build && node dist/examples/filesystem_use.js",
"example:http": "npm run build && node dist/examples/http_example.js",
"example:everything": "npm run build && node dist/examples/mcp_everything.js",
"example:multi": "npm run build && node dist/examples/multi_server_example.js",
"example:sandbox": "npm run build && node dist/examples/sandbox_everything.js",
"example:oauth": "npm run build && node dist/examples/simple_oauth_example.js",
"example:blender": "npm run build && node dist/examples/blender_use.js",
"example:add_server": "npm run build && node dist/examples/add_server_tool.js",
"example:structured": "npm run build && node dist/examples/structured_output.js"
},
"peerDependencies": {
"langfuse": "^3.32.0",
"langfuse-langchain": "^3.38.4"
},
"peerDependenciesMeta": {
"langfuse": {
"optional": true
},
"langfuse-langchain": {
"optional": true
}
},
"dependencies": {
"@dmitryrechkin/json-schema-to-zod": "^1.0.1",
"@langchain/anthropic": "^0.3.14",
"@langchain/core": "0.3.72",
"@langchain/openai": "^0.5.15",
"@modelcontextprotocol/sdk": "1.12.1",
"@scarf/scarf": "^1.4.0",
"ai": "^4.3.19",
"dotenv": "^16.5.0",
"eventsource": "^3.0.6",
"fastembed": "^1.14.4",
"langchain": "^0.3.27",
"lodash-es": "^4.17.21",
"posthog-node": "^5.1.1",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"ws": "^8.18.2",
"zod": "^3.25.48",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@antfu/eslint-config": "^4.13.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.19.8",
"@types/ws": "^8.18.1",
"eslint": "^9.28.0",
"eslint-plugin-format": "^1.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"shx": "^0.4.0",
"typescript": "^5.8.3",
"vitest": "^2.1.9"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"eslint"
]
}
}