-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.5 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
{
"name": "@ui5/mcp-server",
"version": "0.2.14",
"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",
"lint:commit": "commitlint",
"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 build && 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.29.0",
"@ui5/linter": "^1.23.1",
"@ui5/logger": "^4.0.2",
"@ui5/project": "^4.0.17",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"async-mutex": "^0.5.0",
"ejs": "^6.0.1",
"execa": "^9.6.1",
"fast-xml-parser": "^5.10.0",
"globby": "^16.2.1",
"lockfile": "^1.0.4",
"make-fetch-happen": "^15.0.6",
"semver": "^7.8.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^20.5.3",
"@eslint/js": "^9.39.2",
"@istanbuljs/esm-loader-hook": "^0.3.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@modelcontextprotocol/inspector": "^0.22.0",
"@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": "^22.0.0",
"@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.4",
"eslint-plugin-ava": "^15.1.0",
"esmock": "^2.7.6",
"husky": "^9.1.7",
"knip": "^6.26.0",
"licensee": "^12.0.1",
"nyc": "^18.0.0",
"rimraf": "^6.1.3",
"sinon": "^22.0.0",
"tsx": "4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"yauzl-promise": "^4.0.0"
}
}