-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.52 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
{
"name": "@repo/ui",
"version": "0.0.0",
"description": "UI",
"private": true,
"scripts": {
"ui:add": "bunx --bun shadcn@latest add",
"clean": "rm -rf .turbo && rm -rf node_modules",
"update-deps": "bun x npm-check-updates -u && bun install",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"recursive-update": "bun x npm-check-updates -u && bun install && turbo run update-deps --parallel"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@repo/tsconfig": "workspace:*",
"@types/react": "^19.0.7",
"@types/node": "22.10.10",
"autoprefixer": "10.4.23",
"postcss": "8.5.6",
"tailwindcss": "3.4.19",
"typescript": "5.7.3"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-tooltip": "^1.1.6",
"class-variance-authority": "^0.7.1",
"clsx": "2.1.1",
"lucide-react": "^0.473.0",
"tailwind-merge": "2.6.1",
"tailwindcss-animate": "1.0.7"
},
"exports": {
".": "./src/index.tsx",
"./globals.css": "./src/globals.css",
"./postcss.config": "./postcss.config.mjs",
"./tailwind.config": "./tailwind.config.ts",
"./lib/*": "./src/lib/*.ts",
"./components/*": "./src/components/*.tsx",
"./hooks/*": "./src/hooks/*.ts"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}