-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 835 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 835 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
39
40
41
42
{
"name": "mcp-node-mssql",
"author": "Cameron Wilby",
"description": "MCP Server for SQL Server using node-mssql",
"repository": {
"type": "git",
"url": "git+https://github.com/cwilby/mcp-node-mssql.git"
},
"keywords": [
"node-mssql",
"mcp",
"modelcontextprotocol"
],
"license": "MIT",
"version": "0.1.1",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-server-node-mssql": "dist/index.js"
},
"files": [
"dist"
],
"devDependencies": {
"@types/bun": "latest",
"@types/mssql": "^9.1.7",
"bun": "^1.2.5"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"mssql": "^11.0.1",
"zod": "^3.24.2"
},
"scripts": {
"test": "bun test",
"ts": "tsc -b",
"build": "bun build ./index.ts --outfile dist/index.js --target node"
}
}