-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 KB
/
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
39
40
41
42
43
44
45
46
47
{
"version": "0.0.0",
"name": "@upstash/mcp-server",
"description": "MCP server for Upstash",
"license": "MIT",
"type": "module",
"bin": {
"mcp-server": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upstash/mcp-server.git"
},
"bugs": {
"url": "https://github.com/upstash/mcp-server/issues"
},
"scripts": {
"build": "tsup && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"watch": "npm run build && tsup --watch",
"inspector": "npx @modelcontextprotocol/inspector node --enable-source-maps dist/index.js run",
"setup": "node ./dist/index.js init",
"logs": "tail -n 20 -f ~/Library/Logs/Claude/mcp*.log",
"test": "bun test",
"fmt": "prettier --write .",
"lint": "eslint \"**/*.{js,ts,tsx}\" --quiet --fix"
},
"files": [
"dist"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.4.0",
"@typescript-eslint/parser": "8.4.0",
"eslint": "9.10.0",
"eslint-plugin-unicorn": "55.0.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.3",
"@types/node": "15",
"chalk": "^5.3.0",
"dotenv": "^16.4.7",
"node-fetch": "^3.3.2",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
}
}