-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.66 KB
/
package.json
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
{
"name": "@ttab/elephant-ui",
"description": "UI package created around Shadcn/ui, primarily for the Elephant project.",
"private": false,
"version": "0.9.5",
"license": "MIT",
"type": "module",
"files": [
"./dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"./icons": {
"types": "./dist/components/icons/index.d.ts",
"import": "./dist/icons.es.js",
"require": "./dist/icons.cjs.js"
},
"./utils": {
"types": "./dist/lib/utils.d.ts",
"import": "./dist/utils.es.js",
"require": "./dist/utils.cjs.js"
},
"./styles/*": "./dist/styles/*"
},
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:styles": "postcss ./src/styles/index.css -o ./dist/style.css",
"lint": "eslint . --cache",
"preview": "vite preview"
},
"overrides": {
"vite": {
"rollup": "npm:@rollup/wasm-node"
}
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"dependencies": {
"@fontsource/inter": "^5.2.5",
"@radix-ui/react-avatar": "^1.1.4",
"@radix-ui/react-checkbox": "^1.1.5",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-popover": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-separator": "^1.1.3",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.1.4",
"@radix-ui/react-tabs": "^1.1.4",
"@radix-ui/react-toggle": "^1.1.2",
"@radix-ui/react-toggle-group": "^1.1.3",
"@radix-ui/react-tooltip": "^1.2.0",
"@ttab/eslint-config-elephant": "^0.0.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"lucide-react": "^0.488.0",
"next-themes": "^0.4.6",
"react": "^18.3.1",
"react-day-picker": "^9.6.7",
"react-dom": "^18.3.1",
"sonner": "^2.0.3",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2"
},
"devDependencies": {
"@types/node": "^22.14.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.1",
"postcss-cli": "^11.0.1",
"react-syntax-highlighter": "^15.6.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"vite": "^6.2.6",
"vite-plugin-dts": "^4.5.3",
"vite-plugin-static-copy": "^2.3.1"
}
}