-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
package.json
File metadata and controls
60 lines (60 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
{
"name": "mcp-scaffold",
"version": "1.0.2",
"description": "CLI tool to scaffold MCP servers in seconds",
"type": "module",
"bin": {
"mcp": "./dist/index.js",
"mcp-cli": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"test": "echo \"Tests coming soon\"",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"model-context-protocol",
"cli",
"scaffolding",
"generator",
"typescript",
"ai",
"llm"
],
"author": "romeoscript <romeobourne211@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/romeoscript/MCP_CLI.git"
},
"bugs": {
"url": "https://github.com/romeoscript/MCP_CLI/issues"
},
"homepage": "https://github.com/romeoscript/MCP_CLI#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.12"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.0",
"tsup": "^8.5.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}