forked from ergut/mcp-bigquery-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 801 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
{
"name": "@ergut/mcp-bigquery-server",
"version": "0.1.0",
"description": "MCP server for interacting with BigQuery databases",
"license": "MIT",
"homepage": "https://oredata.com",
"type": "module",
"bin": {
"mcp-server-bigquery": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"postbuild": "shx chmod +x dist/index.js",
"prepare": "npm run build",
"dev": "tsc --watch",
"clean": "shx rm -rf dist"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"@google-cloud/bigquery": "^7.3.0"
},
"devDependencies": {
"shx": "^0.3.4",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ergut/mcp-bigquery-server"
}
}