-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 981 Bytes
/
package.json
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": "@datastax/astra-db-mcp",
"version": "1.2.0",
"description": "",
"type": "module",
"main": "./build/index.js",
"bin": {
"astra-db-mcp": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build:esbuild": "node esbuild.config.js",
"build": "rimraf build && node esbuild.config.js --prod",
"watch:esbuild": "node esbuild.config.js --watch",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@datastax/astra-db-ts": "^1.5.0",
"@modelcontextprotocol/sdk": "^1.6.1",
"dotenv": "^16.4.7",
"jsonschema": "^1.5.0"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.4.1",
"@types/node": "^20.17.23",
"esbuild": "^0.25.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.2",
"vitest": "^1.6.1"
},
"license": "Apache-2.0"
}