-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 726 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 726 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
{
"name": "abs-mcp-server",
"version": "0.1.0",
"description": "ABS Data API MCP Server",
"private": true,
"type": "module",
"bin": {
"abs-mcp-server": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"start": "node build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"axios": "^1.6.2",
"fast-xml-parser": "^4.3.2",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/node": "^20.10.4",
"typescript": "^5.3.3"
}
}