-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 785 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 785 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
{
"name": "redshift-js-mcp-server",
"version": "0.1.0",
"description": "Model Context Protocol server for Amazon Redshift",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"redshift",
"model-context-protocol",
"ai",
"code-generation"
],
"author": "Paschal Onuorah",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"pg": "^8.11.3"
},
"devDependencies": {
"@types/node": "^20.17.30",
"@types/pg": "^8.10.9",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
}
}