-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.43 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
{
"name": "webmcp-proxy",
"version": "0.2.2",
"description": "Proxy tools from a remote MCP server to the browser via WebMCP",
"keywords": [
"webmcp",
"mcp",
"proxy",
"agent"
],
"homepage": "https://github.com/alpic-ai/webmcp-proxy#readme",
"bugs": {
"url": "https://github.com/alpic-ai/webmcp-proxy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alpic-ai/webmcp-proxy.git"
},
"license": "ISC",
"author": "Frédéric Barthelet",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"default": "./dist/react.js"
},
"./vue": {
"types": "./dist/vue.d.ts",
"default": "./dist/vue.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"demo": "pnpm --filter webmcp-proxy-demo dev",
"test": "vitest"
},
"devDependencies": {
"@types/react": "^19.2.17",
"react": "^19.2.7",
"typescript": "^6.0.3",
"vue": "^3.5.39"
},
"peerDependencies": {
"react": ">=18",
"vue": ">=3"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"vue": {
"optional": true
}
},
"packageManager": "pnpm@10.30.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0"
}
}