-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 973 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 973 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
33
34
35
36
37
38
39
40
41
42
{
"name": "thunderclient-mcp",
"version": "1.0.11",
"description": "Thunder Client MCP Server",
"main": "dist/index.js`",
"types": "dist/index.d.ts",
"type": "module",
"keywords": [
"thunderclient",
"mcp",
"thunder client mcp"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "rimraf dist && tsc",
"postinstall": "npm install -g @thunderclient/cli@latest"
},
"bin": {
"thunderclient-mcp": "dist/index.js"
},
"author": "Thunder Client Limited",
"homepage": "https://www.thunderclient.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thunderclient/thunderclient-mcp"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^4.3.6",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@types/node": "^24.1.0",
"rimraf": "^6.0.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"overrides": {
"glob": "11.1.0"
}
}