-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.42 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.42 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
{
"name": "mcp-namecheap",
"version": "1.0.0",
"main": "dist/index.js",
"bin": {
"mcp-namecheap": "./bin/mcp-namecheap"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node --no-warnings dist/stdio.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "echo \"No tests yet\" && exit 0",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"namecheap",
"dns",
"domains",
"api",
"domain-management",
"dns-management"
],
"author": "Rob Sherman",
"repository": {
"type": "git",
"url": "https://github.com/cfdude/mcp-namecheap.git"
},
"bugs": {
"url": "https://github.com/cfdude/mcp-namecheap/issues"
},
"homepage": "https://github.com/cfdude/mcp-namecheap#readme",
"license": "MIT",
"description": "MCP server for interacting with Namecheap API",
"mcp": {
"type": "stdio"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"axios": "^1.10.0",
"dotenv": "^16.4.5",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/node": "^24.0.12",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"nodemon": "^3.1.10",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
}
}