-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.55 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "mcp-server-kit",
"version": "1.0.16",
"description": "CLI tool for scaffolding and testing Model Context Protocol (MCP) servers",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikec-ai/mcp-server-kit.git"
},
"bugs": {
"url": "https://github.com/mikec-ai/mcp-server-kit/issues"
},
"homepage": "https://github.com/mikec-ai/mcp-server-kit#readme",
"keywords": [
"mcp",
"model-context-protocol",
"scaffolding",
"testing",
"cloudflare-workers",
"vercel",
"cli",
"ai",
"ai-agents",
"claude",
"anthropic",
"typescript"
],
"author": "MikeC",
"license": "MIT",
"type": "module",
"bin": {
"mcp-server-kit": "./bin/mcp-server-kit.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./harness": {
"types": "./dist/harness/index.d.ts",
"import": "./dist/harness/index.js"
},
"./commands": {
"types": "./dist/core/commands/index.d.ts",
"import": "./dist/core/commands/index.js"
},
"./scaffolding": {
"types": "./dist/core/commands/shared/index.d.ts",
"import": "./dist/core/commands/shared/index.js"
},
"./validation": {
"types": "./dist/core/commands/validate.d.ts",
"import": "./dist/core/commands/validate.js"
}
},
"files": [
"README.md",
"dist",
"templates",
"bin"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"format": "biome format --write",
"lint": "biome lint",
"lint:fix": "biome lint --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:unit": "vitest run test/unit",
"test:e2e": "tsx test/integration/template-quality.e2e.ts",
"test:templates": "tsx test/integration/template-quality.e2e.ts",
"test:all": "vitest run",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build && npm run test:all",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@modelcontextprotocol/sdk": "1.19.1",
"commander": "^12.1.0",
"glob": "^11.0.3",
"handlebars": "^4.7.8",
"jsonpath-plus": "^10.3.0",
"strip-json-comments": "^5.0.3",
"yaml": "^2.7.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@types/node": "^24.9.1",
"@vitest/coverage-v8": "^3.2.4",
"tsup": "^8.3.5",
"tsx": "^4.20.6",
"typescript": "5.9.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}