-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (48 loc) · 1.17 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
{
"name": "fluvi-ui",
"version": "1.0.1",
"description": "A lightweight fluid layout engine for React and Tailwind CSS.",
"author": "Sahariar Kabir",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https:https://github.com/kabir31416/fluvi-ui.git"
},
"type": "module",
"files": ["dist"],
"main": "./dist/fluvi-ui.js",
"module": "./dist/fluvi-ui.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/fluvi-ui.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"keywords": ["react", "responsive", "grid", "fluid-ui", "tailwindcss"],
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.27",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vite-plugin-dts": "^4.5.4"
}
}