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{
"name": "compadcn",
"version": "1.0.1",
"description": "CLI for installing and managing ShadCN UI components",
"type": "module",
"main": "index.js",
"bin": {
"compadcn": "./dist/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"dev:watch": "tsx watch src/index.ts",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"prepublishOnly": "pnpm run clean && pnpm run build",
"link-cli": "pnpm run build && pnpm unlink --global && pnpm link --global"
},
"keywords": [
"cli",
"shadcn",
"ui",
"components",
"typescript"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^24.0.1",
"rimraf": "^6.0.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"execa": "^9.6.0",
"gradient-string": "^3.0.0"
}
}