-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 810 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 810 Bytes
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
{
"name": "@modelcontextprotocol/create-mcp-app",
"version": "0.4.1",
"description": "Create MCP App projects with one command",
"type": "module",
"bin": {
"create-mcp-app": "./dist/index.js"
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"test": "npm run build && node test/scaffold-build.test.mjs",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/modelcontextprotocol/ext-apps",
"directory": "packages/create-mcp-app"
},
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.10.0",
"@modelcontextprotocol/sdk": "^1.24.0",
"picocolors": "^1.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.9.3"
}
}