@ui5/mcp-server 0.2.5 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +75 -59
- package/lib/tools/create_ui5_app/create_ui5_app.js +9 -7
- package/lib/tools/create_ui5_app/create_ui5_app.js.map +1 -1
- package/lib/tools/create_ui5_app/templateProcessor.d.ts +2 -0
- package/lib/tools/create_ui5_app/templateProcessor.js.map +1 -1
- package/npm-shrinkwrap.json +362 -582
- package/package.json +10 -10
- package/resources/template-js/webapp/manifest.json +5 -1
- package/resources/template-ts/webapp/manifest.json +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/mcp-server",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "MCP server for SAPUI5/OpenUI5 development",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SAP SE",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"build-test": "tsc --noEmit -p .",
|
|
36
36
|
"build-watch": "npm run clean-lib && tsc -w -p tsconfig.build.json",
|
|
37
37
|
"check-licenses": "licensee --errors-only",
|
|
38
|
-
"
|
|
39
|
-
"hooks:pre-push": "npm run lint:commit && npm run lint && npm run
|
|
38
|
+
"knip": "knip --config knip.config.js",
|
|
39
|
+
"hooks:pre-push": "npm run lint:commit && npm run lint && npm run knip",
|
|
40
40
|
"lint:commit": "commitlint -e",
|
|
41
41
|
"prepare": "node ./.husky/skip.js || husky",
|
|
42
42
|
"clean-coverage": "rimraf coverage",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"clean-test-tmp": "rimraf test/tmp",
|
|
45
45
|
"lint": "eslint .",
|
|
46
46
|
"lint-fix": "eslint . --fix",
|
|
47
|
-
"test": "npm run lint && npm run build-test && npm run coverage && npm run
|
|
47
|
+
"test": "npm run lint && npm run build-test && npm run coverage && npm run knip && npm run check-licenses",
|
|
48
48
|
"coverage": "npm run clean-coverage && nyc ava --node-arguments=\"--experimental-loader=@istanbuljs/esm-loader-hook\"",
|
|
49
49
|
"unit": "ava",
|
|
50
50
|
"unit-debug": "ava debug",
|
|
@@ -76,15 +76,15 @@
|
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
79
|
-
"@ui5/linter": "^1.20.
|
|
79
|
+
"@ui5/linter": "^1.20.11",
|
|
80
80
|
"@ui5/logger": "^4.0.2",
|
|
81
|
-
"@ui5/project": "^4.0.
|
|
81
|
+
"@ui5/project": "^4.0.10",
|
|
82
82
|
"ajv": "^8.17.1",
|
|
83
83
|
"ajv-formats": "^3.0.1",
|
|
84
84
|
"async-mutex": "^0.5.0",
|
|
85
85
|
"ejs": "^4.0.1",
|
|
86
86
|
"execa": "^9.6.1",
|
|
87
|
-
"fast-xml-parser": "^5.3.
|
|
87
|
+
"fast-xml-parser": "^5.3.6",
|
|
88
88
|
"globby": "^16.1.0",
|
|
89
89
|
"lockfile": "^1.0.4",
|
|
90
90
|
"make-fetch-happen": "^15.0.3",
|
|
@@ -107,18 +107,18 @@
|
|
|
107
107
|
"@types/yauzl-promise": "^4.0.1",
|
|
108
108
|
"@ui5-language-assistant/semantic-model-types": "^3.3.1",
|
|
109
109
|
"ava": "^6.3.0",
|
|
110
|
-
"depcheck": "^1.4.7",
|
|
111
110
|
"eslint": "^9.39.2",
|
|
112
111
|
"eslint-plugin-ava": "^15.0.1",
|
|
113
112
|
"esmock": "^2.7.3",
|
|
114
113
|
"husky": "^9.1.7",
|
|
114
|
+
"knip": "^5.83.0",
|
|
115
115
|
"licensee": "^12.0.1",
|
|
116
116
|
"nyc": "^17.1.0",
|
|
117
|
-
"rimraf": "^6.1.
|
|
117
|
+
"rimraf": "^6.1.3",
|
|
118
118
|
"sinon": "^21.0.1",
|
|
119
119
|
"tsx": "^4.21.0",
|
|
120
120
|
"typescript": "^5.9.3",
|
|
121
|
-
"typescript-eslint": "^8.
|
|
121
|
+
"typescript-eslint": "^8.56.0",
|
|
122
122
|
"yauzl-promise": "^4.0.0"
|
|
123
123
|
},
|
|
124
124
|
"overrides": {
|