-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.89 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.89 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
{
"name": "@ui5/webcomponents-react-mcp",
"description": "MCP server for UI5 Web Components for React - Developer documentation and API assistance",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"version": "2.21.3",
"type": "module",
"mcpName": "io.github.UI5/webcomponents-react-mcp-server",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"ui5-wcr-mcp": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/UI5/webcomponents-react",
"directory": "packages/mcp-server"
},
"scripts": {
"extract:descriptions": "tsx scripts/extract-component-descriptions.ts",
"bundle:docs": "tsx scripts/bundle-docs.ts",
"fetch:skills": "tsx scripts/fetch-upstream-skills.ts",
"compile": "tsc --build tsconfig.build.json && tsx scripts/post-build.ts",
"update": "run-p fetch:skills extract:descriptions bundle:docs && prettier --write src/tools/get_documentation/documentation_sections.json && npm run compile",
"clean": "rimraf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo src/tools/get_component_api/component-apis.json src/tools/list_components/descriptions.json docs/",
"inspector": "npx @modelcontextprotocol/inspector node ./dist/index.js",
"test": "ava --watch",
"test:ci": "ava",
"version": "tsx scripts/sync-server-version.ts && git add server.json"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"docs",
"resources",
"CHANGELOG.md",
"README.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"zod": "4.3.6"
},
"devDependencies": {
"@ui5/webcomponents-react": "workspace:~",
"ava": "7.0.0",
"react-docgen-typescript": "2.4.0",
"tsx": "4.21.0"
}
}