-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.58 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
{
"name": "@repo/ui",
"type": "module",
"private": true,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint . --max-warnings 0",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./components/button": {
"import": "./dist/components/button.js",
"types": "./dist/components/button.d.ts"
},
"./components/card": {
"import": "./dist/components/card.js",
"types": "./dist/components/card.d.ts"
},
"./components/scroll-area": {
"import": "./dist/components/scroll-area.js",
"types": "./dist/components/scroll-area.d.ts"
},
"./components/separator": {
"import": "./dist/components/separator.js",
"types": "./dist/components/separator.d.ts"
},
"./lib/utils": {
"import": "./dist/lib/utils.js",
"types": "./dist/lib/utils.d.ts"
}
},
"peerDependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"dependencies": {
"@radix-ui/react-scroll-area": "1.2.10",
"@radix-ui/react-separator": "1.1.8",
"@radix-ui/react-slot": "1.2.4",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "1.8.0",
"tailwind-merge": "3.5.0",
"tw-animate-css": "1.4.0"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"typescript": "6.0.2"
}
}