-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.43 KB
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
48
49
50
51
52
53
54
55
56
57
58
{
"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 && bun -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"watch": "bun run build && tsup --watch",
"logs": "tail -n 20 -f ~/.claude/debug/latest",
"fmt": "prettier --write .",
"test": "bun test",
"lint": "eslint \"**/*.{js,ts,tsx}\" --quiet --fix && tsc --noEmit",
"prepare": "husky"
},
"files": [
"dist"
],
"devDependencies": {
"@types/bun": "^1.3.9",
"@typescript-eslint/eslint-plugin": "8.4.0",
"@typescript-eslint/parser": "8.4.0",
"eslint": "9.10.0",
"eslint-plugin-unicorn": "55.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.6.2",
"tsup": "^8.5.0"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --quiet --fix"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.5",
"@types/node": "^15.14.9",
"chalk": "^5.6.0",
"commander": "^14.0.0",
"dotenv": "^16.6.1",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.6"
}
}