-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.81 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": "@ui5/webcomponents-mcp-server",
"version": "0.1.2",
"main": "index.js",
"mcpName": "io.github.UI5/webcomponents-mcp-server",
"type": "module",
"bin": {
"ui5-webc-mcp": "build/index.js"
},
"scripts": {
"prepare:docs": "node ./scripts/fetch_dir.js add https://github.com/UI5/webcomponents.git main ./docs",
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"clean": "rm -rf build",
"dev": "npm run build && ./build/index.js",
"inspector": "npx @modelcontextprotocol/inspector node ./build/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/**/*.ts",
"type-check": "tsc --noEmit",
"test": "npm run build && ava",
"test:watch": "ava --watch"
},
"files": [
"build/**",
"docs/**",
"LICENSE",
"LICENSES/**",
"npm-shrinkwrap.json",
".reuse/**",
"resources/**"
],
"engines": {
"node": "^20.17.0 || >=22.9.0",
"npm": ">= 8"
},
"keywords": [
"ui5",
"webcomponents",
"mcp",
"sap",
"fiori"
],
"repository": {
"type": "git",
"url": "git+https://github.com/UI5/webcomponents-mcp-server.git"
},
"bugs": {
"url": "https://github.com/UI5/webcomponents-mcp-server/issues"
},
"author": "",
"license": "Apache-2.0",
"description": "Model Context Protocol server for UI5 Web Components development assistance",
"devDependencies": {
"@types/node": "^24.10.2",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"ava": "^6.4.1",
"eslint": "^9.15.0",
"prettier": "^3.3.3",
"tsx": "^4.20.6",
"typescript": "^5.7.2",
"vite-node": "^3.2.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"zod": "^3.25.76"
}
}