-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.27 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
{
"name": "@workingmodel/create-mcp-server",
"version": "1.0.0",
"description": "Stop wiring up MCP boilerplate by hand. Scaffold a production-ready MCP server with typed tools, local inspector, and CI in under 60 seconds.",
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"ai",
"scaffold",
"generator",
"cli",
"typescript",
"boilerplate"
],
"author": "Working Model <adam@workingmodel.co>",
"license": "MIT",
"homepage": "https://github.com/workingmodel/create-mcp-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/workingmodel/create-mcp-server.git"
},
"type": "module",
"bin": {
"create-mcp-server": "dist/index.js"
},
"files": [
"dist",
"src/templates"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "node dist/index.js --yes test-project-smoke && rm -rf test-project-smoke"
},
"dependencies": {
"kleur": "^4.1.5",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/prompts": "^2.4.9",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}