-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.11 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.11 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "shuip",
"version": "1.2.0",
"author": "plvo <plvdev@proton.me>",
"license": "MIT",
"description": "Ship fast with sh(ui)p, a collection of components and blocks for your Next.js project, built with shadcn/ui",
"homepage": "https://github.com/plvo/shuip",
"bugs": {
"url": "https://github.com/plvo/shuip/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plvo/shuip"
},
"type": "module",
"packageManager": "bun@1.2.10",
"scripts": {
"clean": "rimraf .next node_modules bun.lock package-lock.json",
"unused": "knip",
"format": "biome format --write .",
"lint": "biome lint",
"analyze": "next experimental-analyze",
"prebuild": "bun run registry:generate && bun run registry:build",
"build": "next build",
"predev": "bun run prebuild",
"dev": "next dev",
"start": "next start",
"registry:build": "bun run scripts/shadcn-build.ts && biome format --write public/r",
"registry:generate": "bun run scripts/generate-registry.ts",
"registry:copy-local": "bun run scripts/copy-local-registry.ts",
"registry:all-cli": "bun run scripts/all-registry-cli.ts",
"postinstall": "fumadocs-mdx",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/postcss": "^4.1.18",
"@tanstack/react-form": "^1.27.7",
"@tanstack/react-query": "^5.90.16",
"@vercel/analytics": "^1.6.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"fumadocs-core": "^16.4.4",
"fumadocs-mdx": "14.2.4",
"fumadocs-ui": "^16.4.4",
"gray-matter": "^4.0.3",
"lucide-react": "^0.562.0",
"next": "16.1.1",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.4.6",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-error-boundary": "^6.0.2",
"react-hook-form": "^7.70.0",
"shadcn": "^3.6.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/mdx": "^2.0.13",
"@types/node": "^24",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"knip": "^5.80.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"rimraf": "^6.1.2",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --unsafe --no-errors-on-unmatched"
]
}
}