-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2 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
{
"name": "devcn",
"version": "0.0.5",
"description": "CLI tool for adding components from the Devcn UI Design Registry",
"keywords": [
"ui",
"components",
"cli",
"design-system",
"shadcn",
"react"
],
"author": "DeDevsClub",
"license": "MIT",
"homepage": "https://devcn.dedevs.com",
"bugs": {
"url": "https://github.com/DeDevsClub/devcn-ui/issues"
},
"bin": {
"devcn": "dist/index.js"
},
"files": [
"dist/index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/DeDevsClub/devcn-ui.git"
},
"scripts": {
"build": "turbo build",
"build:cli": "tsup",
"build:registry": "npx shadcn@latest build && cp -r public/r apps/docs/public/ && cp registry.json apps/docs/public/",
"gen:registry": "ts-node scripts/generateRegistry.ts",
"registry": "pnpm run gen:registry && pnpm run build:registry",
"dev": "PORT=3422 turbo dev",
"lint": "ultracite lint",
"format": "ultracite format",
"test": "turbo test",
"analyze": "turbo analyze",
"bump-deps": "npx npm-check-updates --deep -u -x shiki,fumadocs-* && pnpm install",
"bump-ui": "npx shadcn@latest add --all --overwrite -c packages/shadcn-ui",
"clean": "git clean -xdf node_modules",
"prepublishOnly": "tsup",
"publish:cli": "npm run build:cli && npm publish",
"publish:patch": "npm version patch && npm run publish:cli",
"publish:minor": "npm version minor && npm run publish:cli",
"publish:major": "npm version major && npm run publish:cli",
"test:cli": "npm run build:cli && chmod +x dist/index.js && node dist/index.js --help"
},
"devDependencies": {
"@auto-it/first-time-contributor": "^11.3.0",
"@biomejs/biome": "2.0.0",
"@types/node": "^24.0.1",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"ultracite": "^5.0.3",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.12.1",
"type": "module",
"dependencies": {
"tsup": "^8.5.0",
"zod": "^3.25.64"
}
}