-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.02 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.02 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
{
"name": "@magicuidesign/cli",
"version": "1.0.3",
"type": "module",
"description": "Official CLI for Magic UI",
"main": "dist/index.js",
"homepage": "https://magicui.design",
"repository": {
"type": "git",
"url": "git@github.com:magicuidesign/cli.git"
},
"files": [
"dist"
],
"bin": {
"magicui-cli": "dist/cli.js"
},
"scripts": {
"build": "tsc && shx chmod +x dist/cli.js",
"start": "node dist/cli.js",
"dev": "nodemon --watch src --ext ts,json --exec \"npm run build\""
},
"keywords": [
"magicuidesign",
"magicui",
"mcp",
"model-context-protocol",
"ai",
"cli"
],
"author": "Dillion Verma <hello@dillion.io>",
"license": "ISC",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"inquirer": "^12.5.0",
"ora": "^8.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.28",
"nodemon": "^3.1.0",
"shx": "^0.3.4",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=18.0.0"
}
}