-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.46 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.46 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
{
"name": "dbatools-mcp-server",
"mcpName": "io.github.dataplat/dbatools-mcp-server",
"version": "0.5.0",
"description": "MCP server for dbatools — exposes SQL Server management commands as MCP tools",
"keywords": [
"dbatools",
"mcp",
"sql server",
"powershell",
"database"
],
"repository": {
"type": "git",
"url": "https://github.com/dataplat/dbatools-mcp-server.git"
},
"license": "MIT",
"type": "module",
"files": [
"dist",
"generated/.gitkeep",
"scripts/refresh-help.ps1"
],
"bin": {
"dbatools-mcp-server": "./dist/server.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/server.ts",
"start": "node dist/server.js",
"refresh-help": "pwsh -NonInteractive -File scripts/refresh-help.ps1",
"test": "node --experimental-vm-modules node_modules/.bin/jest --passWithNoTests"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^22.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"useESM": true
}
]
}
},
"engines": {
"node": ">=20.0.0"
}
}