-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.44 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.44 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
{
"name": "mcp-widget",
"version": "1.1.6",
"description": "CLI tool to bootstrap MCP (Model Context Protocol) servers with ChatGPT widget support",
"type": "module",
"bin": {
"mcp-widget": "./bin/cli.js"
},
"scripts": {
"test": "node --import tsx --test test/validation.test.ts test/create-command.test.ts test/template-copy.test.ts test/cleanup.test.ts",
"test:all": "node --import tsx --test test/*.test.ts",
"test:unit": "node --import tsx --test test/validation.test.ts test/create-command.test.ts",
"test:integration": "node --import tsx --test test/integration.test.ts test/template-copy.test.ts test/non-interactive.test.ts",
"test:cleanup": "node --import tsx --test test/cleanup.test.ts",
"dev": "node bin/cli.js",
"prepublishOnly": "npm test"
},
"keywords": [
"chatgpt",
"openai",
"mcp",
"model-context-protocol",
"cli",
"boilerplate",
"scaffold",
"generator",
"widget",
"nextjs",
"vite",
"react"
],
"author": "toolmindlab",
"license": "MIT",
"files": [
"bin/",
"src/",
"templates/",
"README.md",
"LICENSE"
],
"dependencies": {
"commander": "^11.1.0",
"inquirer": "^9.2.12",
"chalk": "^5.3.0",
"ora": "^7.0.1",
"fs-extra": "^11.2.0",
"execa": "^8.0.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.0.0"
}
}