forked from imlewc/metabase-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 845 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 845 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
{
"name": "@runbear-io/metabase-server",
"version": "0.1.0",
"description": "A Model Context Protocol server",
"private": false,
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"type": "module",
"bin": {
"metabase-server": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\" && mkdir -p dist && cp build/index.js dist/index.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.1",
"abort-controller": "^3.0.0",
"axios": "^1.8.2"
},
"devDependencies": {
"@types/axios": "^0.14.4",
"@types/node": "^20.17.22",
"typescript": "^5.3.3"
}
}