-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.45 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
59
60
61
62
63
64
65
{
"name": "@themkn/gandi-mcp",
"version": "1.1.5",
"description": "MCP server for Gandi LiveDNS — manage DNS records, domains, and zone snapshots from Claude Code or any MCP client.",
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"gandi",
"dns",
"livedns",
"claude",
"claude-code"
],
"license": "MIT",
"author": "mkn <khoa@khoa.ch>",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"gandi-mcp": "dist/index.js"
},
"engines": {
"node": ">=24"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.test.json",
"audit": "npm audit --audit-level=high",
"prepublishOnly": "pnpm build && pnpm test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^26.1.1",
"typescript": "^7.0.2",
"vite": "^8.1.0",
"vitest": "^4.1.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/themkn/gandi-mcp.git"
},
"bugs": "https://github.com/themkn/gandi-mcp/issues",
"homepage": "https://github.com/themkn/gandi-mcp#readme",
"publishConfig": {
"access": "public"
},
"pnpm": {
"overrides": {
"hono": ">=4.12.25"
}
}
}