-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.17 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
69
70
71
72
73
74
{
"name": "dedevs-ui",
"version": "0.2.7",
"description": "CLI tool for adding components from the DeDevs UI Design Registry",
"keywords": [
"ui",
"components",
"cli",
"design-system",
"shadcn",
"react"
],
"author": "DeDevsClub",
"license": "MIT",
"homepage": "https://ui.dedevs.com",
"bugs": {
"url": "https://github.com/DeDevsClub/dedevs-ui/issues"
},
"bin": {
"dedevs-ui": "dist/index.js"
},
"files": [
"dist/index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/DeDevsClub/dedevs-ui.git"
},
"scripts": {
"shell": "source ./workflows.sh",
"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=3421 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",
"pub:cli": "npm run build:cli && npm publish",
"pub:patch": "npm version patch && npm run pub:cli",
"pub:minor": "npm version minor && npm run pub:cli",
"pub:major": "npm version major && npm run pub: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",
"ts-node": "^10.9.2",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"ultracite": "^5.0.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.12.1",
"type": "module",
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.536.0",
"tailwind-merge": "^3.3.1",
"tsup": "^8.5.0",
"tw-animate-css": "^1.3.6",
"zod": "^3.25.64"
}
}