-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.77 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
{
"name": "ui-components",
"version": "0.2.0",
"private": true,
"author": {
"name": "Saurabh",
"email": "saurabh10102@gmail.com",
"url": "https://saura3h.xyz"
},
"license": "MIT",
"description": "UI Components for React",
"keywords": [
"react",
"reactjs",
"ui",
"components",
"tailwindcss",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/starc007/ui-components"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome lint .",
"typecheck": "tsc --noEmit",
"check:registry": "bun scripts/check-registry.ts",
"test": "bun test",
"check": "bun run typecheck && bun run lint && bun run check:registry"
},
"dependencies": {
"@paper-design/shaders-react": "^0.0.76",
"@shikijs/transformers": "^4.2.0",
"@tanstack/react-virtual": "^3.14.4",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"clsx": "^2.1.1",
"geist": "^1.7.2",
"lenis": "^1.3.23",
"lucide-react": "^1.16.0",
"motion": "^11.15.0",
"next": "^15.1.4",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-use-measure": "^2.1.7",
"shiki": "^4.2.0",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@happy-dom/global-registrator": "^20.10.6",
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.14",
"@types/jest-axe": "^3.5.9",
"@types/node": "^22.10.5",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"jest-axe": "^10.0.0",
"postcss": "^8.5.1",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.3"
}
}