-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 919 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 919 Bytes
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
{
"name": "@cap-js/mcp-server",
"mcpName": "io.github.cap-js/mcp-server",
"version": "0.0.5",
"description": "Model Context Protocol (MCP) server for AI-assisted development of CAP applications.",
"repository": {
"type": "git",
"url": "git+https://github.com/cap-js/mcp-server.git"
},
"author": "SAP SE (https://www.sap.com)",
"homepage": "https://cap.cloud.sap/",
"license": "Apache-2.0",
"type": "module",
"files": [
".claude-plugin/",
"lib/",
".mcp.json",
"icon.png",
"index.js",
"manifest.json"
],
"bin": {
"cds-mcp": "./index.js"
},
"scripts": {
"test": "node --test --test-concurrency=1",
"lint": "npx eslint ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@sap/cds": ">=9",
"onnxruntime-web": "^1.24.3"
},
"devDependencies": {
"@huggingface/transformers": "^4.2.0",
"prettier": "^3.8.3"
}
}