-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 910 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 910 Bytes
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
{
"name": "@baselayer/components",
"version": "2.1.1",
"private": true,
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"files": [
"src"
],
"scripts": {
"build": "tsc && pnpm generate:registry && pnpm registry:build",
"dev": "tsc --watch",
"generate:registry": "tsx scripts/gen-registry-json.ts",
"registry:build": "shadcn build --cwd . --output ../../web/public/r"
},
"dependencies": {
"@baselayer/registry": "workspace:*",
"lucide-react": "^0.525.0",
"react": "^19.2.3",
"react-aria-components": "catalog:",
"tailwind-variants": "catalog:",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/node": "catalog:",
"@types/react": "^19.2.7",
"fast-glob": "^3.3.2",
"ts-morph": "^26.0.0",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.6",
"typescript": "catalog:"
},
"peerDependencies": {
"react": ">=19.0.0",
"tailwindcss": ">=4.0.0"
}
}