-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 990 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 990 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": "xrootd-mcp-server",
"version": "0.1.0",
"description": "MCP server for XRootD file access and management",
"type": "module",
"main": "build/src/index.js",
"bin": {
"xrootd-mcp-server": "./build/src/index.js"
},
"scripts": {
"build": "tsc && chmod +x build/src/index.js",
"watch": "tsc --watch",
"prepack": "npm run build",
"test": "npm run build && node --test build/test/*.test.js",
"test:integration": "npm run test",
"test:coverage": "npm run build && c8 --reporter=text --reporter=lcov --reporter=json-summary node --test build/test/*.test.js",
"coverage": "npm run test:coverage"
},
"keywords": [
"mcp",
"xrootd",
"file-access"
],
"engines": {
"node": ">=20"
},
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"jsroot": "^7.10.3"
},
"devDependencies": {
"@types/node": "^20.19.39",
"c8": "^10.1.3",
"typescript": "^5.9.3"
}
}