eglador-ui-react 0.1.0-alpha.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "eglador-ui-react",
3
+ "version": "0.1.0-alpha.10",
4
+ "description": "Reusable Tailwind CSS v4 UI components for React projects",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "sideEffects": false,
19
+ "scripts": {
20
+ "build": "tsup",
21
+ "dev": "tsup --watch",
22
+ "typecheck": "tsc --noEmit",
23
+ "prepublishOnly": "npm run typecheck && npm run build",
24
+ "storybook": "storybook dev -p 6006",
25
+ "build-storybook": "storybook build"
26
+ },
27
+ "keywords": [
28
+ "react",
29
+ "ui",
30
+ "components",
31
+ "tailwindcss"
32
+ ],
33
+ "author": {
34
+ "name": "Kenan Gundogan",
35
+ "url": "https://github.com/kenangundogan"
36
+ },
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/kenangundogan/eglador-ui-react"
40
+ },
41
+ "bugs": {
42
+ "url": "https://github.com/kenangundogan/eglador-ui-react/issues"
43
+ },
44
+ "homepage": "https://github.com/kenangundogan/eglador-ui-react#readme",
45
+ "license": "MIT",
46
+ "peerDependencies": {
47
+ "embla-carousel": "^8",
48
+ "embla-carousel-react": "^8",
49
+ "embla-carousel-autoplay": "^8",
50
+ "embla-carousel-auto-scroll": "^8",
51
+ "embla-carousel-auto-height": "^8",
52
+ "embla-carousel-fade": "^8",
53
+ "embla-carousel-wheel-gestures": "^8",
54
+ "embla-carousel-class-names": "^8",
55
+ "react": ">=18",
56
+ "react-dom": ">=18",
57
+ "tailwindcss": "^4"
58
+ },
59
+ "peerDependenciesMeta": {
60
+ "embla-carousel": { "optional": true },
61
+ "embla-carousel-react": { "optional": true },
62
+ "embla-carousel-autoplay": { "optional": true },
63
+ "embla-carousel-auto-scroll": { "optional": true },
64
+ "embla-carousel-auto-height": { "optional": true },
65
+ "embla-carousel-fade": { "optional": true },
66
+ "embla-carousel-wheel-gestures": { "optional": true },
67
+ "embla-carousel-class-names": { "optional": true }
68
+ },
69
+ "dependencies": {
70
+ "clsx": "^2.1.1",
71
+ "tailwind-merge": "^3.3.0"
72
+ },
73
+ "devDependencies": {
74
+ "@storybook/addon-a11y": "^10.3.3",
75
+ "@storybook/addon-docs": "^10.3.3",
76
+ "@storybook/react-vite": "^10.3.3",
77
+ "@tailwindcss/vite": "^4.2.2",
78
+ "@types/react": "^19.1.0",
79
+ "@types/react-dom": "^19.1.0",
80
+ "embla-carousel": "^8.6.0",
81
+ "embla-carousel-react": "^8.6.0",
82
+ "lucide-react": "^1.7.0",
83
+ "storybook": "^10.3.3",
84
+ "tailwindcss": "^4.2.2",
85
+ "tsup": "^8.5.0",
86
+ "typescript": "^5.8.2"
87
+ }
88
+ }