-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.29 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
66
67
68
69
70
71
72
73
74
{
"name": "namecom-mcp",
"version": "1.1.0",
"description": "A Model Context Protocol (MCP) server for name.com API integration, providing AI assistants with domain management capabilities",
"main": "dist/index.js",
"type": "module",
"bin": {
"namecom-mcp": "dist/index.js"
},
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean && node scripts/embed-spec.cjs && node scripts/embed-version.cjs",
"build": "tsc",
"start": "node dist/index.js",
"dev": "node --loader ts-node/esm src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"prepublishOnly": "npm run build && npm run test:ci",
"version:patch": "npm run build && npm run test:ci && npm version patch -m \"NCDD-000 chore(release): %s\" && git push upstream && git push upstream --tags",
"version:minor": "npm run build && npm run test:ci && npm version minor -m \"NCDD-000 chore(release): %s\" && git push upstream && git push upstream --tags",
"version:major": "npm run build && npm run test:ci && npm version major -m \"NCDD-000 chore(release): %s\" && git push upstream && git push upstream --tags",
"release:patch": "npm run version:patch",
"release:minor": "npm run version:minor",
"release:major": "npm run version:major"
},
"keywords": [
"mcp",
"model-context-protocol",
"name.com",
"namecom",
"domain",
"dns",
"api",
"ai",
"assistant",
"claude"
],
"author": "name.com Engineering",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/namedotcom/namecom-mcp.git"
},
"bugs": {
"url": "https://github.com/namedotcom/namecom-mcp/issues"
},
"homepage": "https://github.com/namedotcom/namecom-mcp#readme",
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"env.example"
],
"engines": {
"node": ">=17.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"dotenv": "^16.4.7",
"js-yaml": "^4.1.0",
"undici": "^5.29.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.14.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}