forked from UI5/mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
135 lines (135 loc) · 3.64 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
128
129
130
131
132
133
134
135
{
"name": "@ui5/mcp-server",
"version": "0.2.4",
"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-licenses": "licensee --errors-only",
"depcheck": "depcheck --ignores @commitlint/config-conventional,@istanbuljs/esm-loader-hook,rimraf,@modelcontextprotocol/inspector",
"hooks:pre-push": "npm run lint:commit && npm run lint && npm run depcheck",
"lint:commit": "commitlint -e",
"prepare": "node ./.husky/skip.js || husky",
"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 depcheck && 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/**"
],
"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.25.3",
"@ui5/linter": "^1.20.9",
"@ui5/logger": "^4.0.2",
"@ui5/project": "^4.0.9",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"async-mutex": "^0.5.0",
"ejs": "^4.0.1",
"execa": "^9.6.1",
"fast-xml-parser": "^5.3.4",
"globby": "^16.1.0",
"lockfile": "^1.0.4",
"make-fetch-happen": "^15.0.3",
"semver": "^7.7.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^20.4.0",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/js": "^9.39.2",
"@istanbuljs/esm-loader-hook": "^0.3.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@modelcontextprotocol/inspector": "^0.18.0",
"@stylistic/eslint-plugin": "^5.7.1",
"@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.0",
"@types/yauzl-promise": "^4.0.1",
"@ui5-language-assistant/semantic-model-types": "^3.3.1",
"ava": "^6.3.0",
"depcheck": "^1.4.7",
"eslint": "^9.39.2",
"eslint-plugin-ava": "^15.0.1",
"esmock": "^2.7.3",
"husky": "^9.1.7",
"licensee": "^12.0.1",
"nyc": "^17.1.0",
"rimraf": "^6.1.2",
"sinon": "^21.0.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"yauzl-promise": "^4.0.0"
},
"overrides": {
"pacote@<=20": {
"tar": "^7.5.7"
},
"cacache@18": {
"tar": "^7.5.7"
},
"node-gyp@10": {
"tar": "^7.5.7"
}
}
}