-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.35 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
{
"name": "@mcp-use/cli",
"type": "module",
"version": "4.1.12",
"description": "Prebuilt CLI, development server, and build pipeline for mcp-use",
"author": "mcp-use, Inc.",
"license": "MIT",
"homepage": "https://github.com/mcp-use/mcp-use#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mcp-use/mcp-use.git",
"directory": "libraries/typescript/packages/cli"
},
"bugs": {
"url": "https://github.com/mcp-use/mcp-use/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"cli"
],
"bin": {
"mcp-use": "./dist/bin.js"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.js"
},
"./internal/skills-loader": {
"types": "./types/internal/skills-loader.d.ts",
"import": "./dist/internal/skills-loader.js"
},
"./vite-client": {
"types": "./types/vite-client.d.ts"
}
},
"files": [
"dist",
"types",
"THIRD_PARTY_NOTICES.md"
],
"engines": {
"node": ">=22.22.2"
},
"scripts": {
"build": "rimraf dist && tsup --config tsup.config.ts && node scripts/copy-third-party-licenses.mjs && node scripts/verify-package.mjs",
"test": "node --test tests/proxy.test.mjs && vitest run",
"test:run": "npm run typecheck && npm test",
"typecheck": "tsc -p tsconfig.test.json"
},
"dependencies": {
"@tailwindcss/vite": "4.3.3",
"@vitejs/plugin-react": "6.0.5",
"tailwindcss": "4.3.3",
"vite": "8.0.16"
},
"peerDependencies": {
"@mcp-use/client": "^2.0.1 || ^2.1.0 || ^2.1.1 || ^2.1.2 || ^2.1.3 || ^2.1.4 || ^2.1.5 || ^2.2.0 || ^2.2.1 || ^2.2.2 || ^2.2.3 || ^2.2.4 || ^2.2.5 || ^2.3.0 || ^2.3.1",
"@mcp-use/inspector": "^20.3.8"
},
"peerDependenciesMeta": {
"@mcp-use/client": {
"optional": true
},
"@mcp-use/inspector": {
"optional": true
}
},
"devDependencies": {
"@mcp-use/client": "workspace:*",
"@mcp-use/tunnel": "workspace:*",
"@modelcontextprotocol/client": "2.0.0",
"@modelcontextprotocol/server": "2.0.0",
"@types/node": "^22.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.9",
"zod": "^4.4.3"
},
"publishConfig": {
"access": "public"
}
}