-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.56 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.56 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@ui5/mcp-server",
"version": "0.2.11",
"description": "MCP server for SAPUI5/OpenUI5 development",
"author": {
"name": "SAP SE",
"email": "openui5@sap.com",
"url": "https://www.sap.com"
},
"license": "Apache-2.0",
"keywords": [
"openui5",
"sapui5",
"ui5",
"development",
"mcp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/UI5/mcp-server.git"
},
"bugs": {
"url": "https://github.com/UI5/mcp-server/issues"
},
"bin": {
"ui5mcp": "bin/ui5mcp.js"
},
"mcpName": "io.github.UI5/mcp-server",
"type": "module",
"scripts": {
"start": "tsx src/cli.ts",
"inspect-mcp-server": "mcp-inspector tsx src/cli.ts",
"inspect-mcp-server-debug": "mcp-inspector tsx --inspect src/cli.ts",
"build": "npm run clean-lib && tsc -p tsconfig.build.json",
"build-test": "tsc --noEmit -p .",
"build-watch": "npm run clean-lib && tsc -w -p tsconfig.build.json",
"check-engine": "check-engine-light -f npm-shrinkwrap.json .",
"check-licenses": "licensee --errors-only",
"knip": "knip --config knip.config.js",
"hooks:pre-push": "npm run lint:commit && npm run lint && npm run knip",
"lint:commit": "commitlint -e",
"prepare": "test -f ./.husky/skip.js && node ./.husky/skip.js || test -d ./.git && husky || true",
"clean-coverage": "rimraf coverage",
"clean-lib": "rimraf lib",
"clean-test-tmp": "rimraf test/tmp",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "npm run lint && npm run build-test && npm run coverage && npm run knip && npm run check-licenses",
"coverage": "npm run clean-coverage && nyc ava --node-arguments=\"--experimental-loader=@istanbuljs/esm-loader-hook\"",
"unit": "ava",
"unit-debug": "ava debug",
"unit-update-snapshots": "ava --update-snapshots",
"unit-watch": "ava --watch",
"try-create-ui5-app": "tsx test/runCreateUi5App.ts",
"try-create-ui5-ts-app": "tsx test/runCreateUi5TsApp.ts",
"update-docs": "tsx scripts/updateDocs.ts"
},
"files": [
"CHANGELOG.md",
"LICENSES/**",
"bin/**",
"lib/**",
"resources/**",
"npm-shrinkwrap.json",
".reuse/**",
"icon.png"
],
"engines": {
"node": "^20.17.0 || >=22.9.0",
"npm": ">= 8"
},
"exports": {
".": {
"import": "./lib/api.js",
"types": "./lib/api.d.ts",
"default": "./lib/api.js"
}
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@ui5/linter": "^1.20.18",
"@ui5/logger": "^4.0.2",
"@ui5/project": "^4.0.15",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"async-mutex": "^0.5.0",
"ejs": "^5.0.2",
"execa": "^9.6.1",
"fast-xml-parser": "^5.7.1",
"globby": "^16.1.1",
"lockfile": "^1.0.4",
"make-fetch-happen": "^15.0.4",
"semver": "^7.7.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/js": "^9.39.2",
"@istanbuljs/esm-loader-hook": "^0.3.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@modelcontextprotocol/inspector": "^0.21.2",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/ejs": "^3.1.5",
"@types/make-fetch-happen": "^10.0.4",
"@types/node": "20.16.15",
"@types/semver": "^7.7.1",
"@types/sinon": "^21.0.1",
"@types/yauzl-promise": "^4.0.1",
"@ui5-language-assistant/semantic-model-types": "^3.3.1",
"ava": "^7.0.0",
"check-engine-light": "0.4.0",
"eslint": "^9.39.2",
"eslint-plugin-ava": "^15.0.1",
"esmock": "^2.7.3",
"husky": "^9.1.7",
"knip": "^5.84.1",
"licensee": "^12.0.1",
"nyc": "^18.0.0",
"rimraf": "^6.1.3",
"sinon": "^21.1.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.2",
"yauzl-promise": "^4.0.0"
}
}