@elqnt/react 1.0.0

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,108 @@
1
+ {
2
+ "name": "@elqnt/react",
3
+ "version": "1.0.0",
4
+ "description": "Shared React components and hooks for Eloquent platform",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.mjs",
11
+ "require": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ },
14
+ "./components/*": {
15
+ "import": "./dist/components/*.mjs",
16
+ "require": "./dist/components/*.js",
17
+ "types": "./dist/components/*.d.ts"
18
+ }
19
+ },
20
+ "files": ["dist"],
21
+ "scripts": {
22
+ "build": "tsup",
23
+ "dev": "tsup --watch",
24
+ "clean": "rm -rf dist",
25
+ "typecheck": "tsc --noEmit"
26
+ },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/Blazi-Commerce/eloquent-packages.git",
30
+ "directory": "packages/react"
31
+ },
32
+ "dependencies": {
33
+ "@elqnt/auth": "^1.0.0",
34
+ "@elqnt/docs": "^1.0.0",
35
+ "@elqnt/entity": "^1.0.0",
36
+ "@elqnt/kg": "^1.0.0",
37
+ "@elqnt/nats": "^1.0.0",
38
+ "@elqnt/types": "^1.0.0",
39
+ "class-variance-authority": "^0.7.0",
40
+ "clsx": "^2.0.0",
41
+ "tailwind-merge": "^2.0.0"
42
+ },
43
+ "peerDependencies": {
44
+ "@radix-ui/react-avatar": "^1.0.0",
45
+ "@radix-ui/react-checkbox": "^1.0.0",
46
+ "@radix-ui/react-dialog": "^1.0.0",
47
+ "@radix-ui/react-dropdown-menu": "^2.0.0",
48
+ "@radix-ui/react-icons": "^1.0.0",
49
+ "@radix-ui/react-label": "^2.0.0",
50
+ "@radix-ui/react-popover": "^1.0.0",
51
+ "@radix-ui/react-progress": "^1.0.0",
52
+ "@radix-ui/react-radio-group": "^1.0.0",
53
+ "@radix-ui/react-scroll-area": "^1.0.0",
54
+ "@radix-ui/react-select": "^2.0.0",
55
+ "@radix-ui/react-separator": "^1.0.0",
56
+ "@radix-ui/react-slider": "^1.0.0",
57
+ "@radix-ui/react-slot": "^1.0.0",
58
+ "@radix-ui/react-tabs": "^1.0.0",
59
+ "@radix-ui/react-tooltip": "^1.0.0",
60
+ "@tanstack/react-table": "^8.0.0",
61
+ "cmdk": "^1.0.0",
62
+ "lucide-react": "^0.400.0",
63
+ "react": "^18.0.0 || ^19.0.0",
64
+ "react-day-picker": "^8.0.0 || ^9.0.0",
65
+ "react-dom": "^18.0.0 || ^19.0.0",
66
+ "react-dropzone": "^14.0.0",
67
+ "react-hook-form": "^7.0.0",
68
+ "recharts": "^2.0.0",
69
+ "sonner": "^1.0.0 || ^2.0.0"
70
+ },
71
+ "devDependencies": {
72
+ "@radix-ui/react-avatar": "^1.1.0",
73
+ "@radix-ui/react-checkbox": "^1.1.0",
74
+ "@radix-ui/react-dialog": "^1.1.0",
75
+ "@radix-ui/react-dropdown-menu": "^2.1.0",
76
+ "@radix-ui/react-icons": "^1.3.0",
77
+ "@radix-ui/react-label": "^2.1.0",
78
+ "@radix-ui/react-popover": "^1.1.0",
79
+ "@radix-ui/react-progress": "^1.1.0",
80
+ "@radix-ui/react-radio-group": "^1.2.0",
81
+ "@radix-ui/react-scroll-area": "^1.1.0",
82
+ "@radix-ui/react-select": "^2.1.0",
83
+ "@radix-ui/react-separator": "^1.1.0",
84
+ "@radix-ui/react-slider": "^1.2.0",
85
+ "@radix-ui/react-slot": "^1.1.0",
86
+ "@radix-ui/react-tabs": "^1.1.0",
87
+ "@radix-ui/react-tooltip": "^1.1.0",
88
+ "@remixicon/react": "^4.0.0",
89
+ "@tanstack/react-table": "^8.20.0",
90
+ "@types/react": "^19.0.0",
91
+ "cmdk": "^1.0.0",
92
+ "lucide-react": "^0.483.0",
93
+ "next": "^15.0.0",
94
+ "next-auth": "^4.0.0",
95
+ "react": "^19.0.0",
96
+ "react-day-picker": "^9.0.0",
97
+ "react-dom": "^19.0.0",
98
+ "react-dropzone": "^14.0.0",
99
+ "react-hook-form": "^7.54.0",
100
+ "react-markdown": "^9.0.0",
101
+ "recharts": "^2.15.0",
102
+ "remark-gfm": "^4.0.0",
103
+ "sonner": "^2.0.0",
104
+ "tsup": "^8.0.0",
105
+ "typescript": "^5.0.0",
106
+ "vaul": "^1.0.0"
107
+ }
108
+ }