@ui5/mcp-server 0.2.4 → 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 +28 -0
- package/README.md +76 -60
- package/lib/tools/create_ui5_app/ODataMetadata.js.map +1 -1
- 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/lib/tools/get_api_reference/lib/apiReferenceResources.js.map +1 -1
- package/lib/utils/cdnHelper.js +1 -1
- package/lib/utils/cdnHelper.js.map +1 -1
- package/npm-shrinkwrap.json +918 -1001
- package/package.json +22 -22
- package/resources/template-card/test/App.js +1 -1
- package/resources/template-js/webapp/manifest.json +5 -1
- package/resources/template-ts/webapp/manifest.json +5 -1
- /package/resources/template-card/{src → card}/analytical.ejs +0 -0
- /package/resources/template-card/{src → card}/calendar.ejs +0 -0
- /package/resources/template-card/{src → card}/dt/Configuration.js +0 -0
- /package/resources/template-card/{src → card}/i18n/i18n.properties +0 -0
- /package/resources/template-card/{src → card}/list.ejs +0 -0
- /package/resources/template-card/{src → card}/manifest.json +0 -0
- /package/resources/template-card/{src → card}/object.ejs +0 -0
- /package/resources/template-card/{src → card}/table.ejs +0 -0
- /package/resources/template-card/{src → card}/timeline.ejs +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/mcp-server",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "MCP server for
|
|
3
|
+
"version": "0.2.6",
|
|
4
|
+
"description": "MCP server for SAPUI5/OpenUI5 development",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SAP SE",
|
|
7
7
|
"email": "openui5@sap.com",
|
|
@@ -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",
|
|
@@ -75,30 +75,30 @@
|
|
|
75
75
|
}
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
79
|
-
"@ui5/linter": "^1.20.
|
|
78
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
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
|
-
"ejs": "^
|
|
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",
|
|
91
|
-
"semver": "^7.7.
|
|
92
|
-
"zod": "^4.3.
|
|
91
|
+
"semver": "^7.7.4",
|
|
92
|
+
"zod": "^4.3.6"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
|
-
"@commitlint/cli": "^20.
|
|
96
|
-
"@commitlint/config-conventional": "^20.
|
|
95
|
+
"@commitlint/cli": "^20.4.1",
|
|
96
|
+
"@commitlint/config-conventional": "^20.4.1",
|
|
97
97
|
"@eslint/js": "^9.39.2",
|
|
98
98
|
"@istanbuljs/esm-loader-hook": "^0.3.0",
|
|
99
99
|
"@istanbuljs/nyc-config-typescript": "^1.0.2",
|
|
100
100
|
"@modelcontextprotocol/inspector": "^0.18.0",
|
|
101
|
-
"@stylistic/eslint-plugin": "^5.7.
|
|
101
|
+
"@stylistic/eslint-plugin": "^5.7.1",
|
|
102
102
|
"@types/ejs": "^3.1.5",
|
|
103
103
|
"@types/make-fetch-happen": "^10.0.4",
|
|
104
104
|
"@types/node": "20.16.15",
|
|
@@ -107,29 +107,29 @@
|
|
|
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",
|
|
115
|
-
"
|
|
114
|
+
"knip": "^5.83.0",
|
|
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": {
|
|
125
125
|
"pacote@<=20": {
|
|
126
|
-
"tar": "^7.5.
|
|
126
|
+
"tar": "^7.5.7"
|
|
127
127
|
},
|
|
128
128
|
"cacache@18": {
|
|
129
|
-
"tar": "^7.5.
|
|
129
|
+
"tar": "^7.5.7"
|
|
130
130
|
},
|
|
131
131
|
"node-gyp@10": {
|
|
132
|
-
"tar": "^7.5.
|
|
132
|
+
"tar": "^7.5.7"
|
|
133
133
|
}
|
|
134
134
|
}
|
|
135
135
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|