@hex-core/components 0.1.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,99 @@
1
+ {
2
+ "name": "@hex-core/components",
3
+ "version": "0.1.0",
4
+ "description": "AI-native React components for Hex UI — Radix UI + Tailwind CSS with machine-readable schemas.",
5
+ "keywords": [
6
+ "react",
7
+ "components",
8
+ "radix-ui",
9
+ "tailwind",
10
+ "mcp",
11
+ "ai-native",
12
+ "component-library",
13
+ "hex-ui"
14
+ ],
15
+ "license": "MIT",
16
+ "author": "Oscar Corona <oabc4004@gmail.com>",
17
+ "homepage": "https://hex-core.dev",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/oscarabcorona/hex-core.git",
21
+ "directory": "packages/components"
22
+ },
23
+ "bugs": {
24
+ "url": "https://github.com/oscarabcorona/hex-core/issues"
25
+ },
26
+ "type": "module",
27
+ "main": "dist/index.js",
28
+ "types": "dist/index.d.ts",
29
+ "exports": {
30
+ ".": {
31
+ "import": "./dist/index.js",
32
+ "types": "./dist/index.d.ts"
33
+ }
34
+ },
35
+ "files": [
36
+ "dist",
37
+ "README.md",
38
+ "LICENSE"
39
+ ],
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "scripts": {
44
+ "build": "tsup",
45
+ "clean": "rm -rf dist"
46
+ },
47
+ "dependencies": {
48
+ "@hex-core/registry": "workspace:^",
49
+ "@radix-ui/react-accordion": "^1.2.12",
50
+ "@radix-ui/react-alert-dialog": "^1.1.15",
51
+ "@radix-ui/react-aspect-ratio": "^1.1.8",
52
+ "@radix-ui/react-avatar": "^1.1.11",
53
+ "@radix-ui/react-checkbox": "^1.3.3",
54
+ "@radix-ui/react-collapsible": "^1.1.12",
55
+ "@radix-ui/react-context-menu": "^2.2.16",
56
+ "@radix-ui/react-dialog": "^1.1.15",
57
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
58
+ "@radix-ui/react-hover-card": "^1.1.15",
59
+ "@radix-ui/react-label": "^2.1.0",
60
+ "@radix-ui/react-menubar": "^1.1.16",
61
+ "@radix-ui/react-navigation-menu": "^1.2.14",
62
+ "@radix-ui/react-popover": "^1.1.15",
63
+ "@radix-ui/react-progress": "^1.1.8",
64
+ "@radix-ui/react-radio-group": "^1.3.8",
65
+ "@radix-ui/react-scroll-area": "^1.2.10",
66
+ "@radix-ui/react-select": "^2.2.6",
67
+ "@radix-ui/react-separator": "^1.1.8",
68
+ "@radix-ui/react-slider": "^1.3.6",
69
+ "@radix-ui/react-slot": "^1.1.0",
70
+ "@radix-ui/react-switch": "^1.2.6",
71
+ "@radix-ui/react-tabs": "^1.1.13",
72
+ "@radix-ui/react-toggle": "^1.1.10",
73
+ "@radix-ui/react-toggle-group": "^1.1.11",
74
+ "@radix-ui/react-tooltip": "^1.2.8",
75
+ "class-variance-authority": "^0.7.0",
76
+ "clsx": "^2.1.0",
77
+ "cmdk": "^1.1.1",
78
+ "date-fns": "^4.1.0",
79
+ "input-otp": "^1.4.2",
80
+ "react-day-picker": "^9.14.0",
81
+ "react-resizable-panels": "^4.10.0",
82
+ "sonner": "^2.0.7",
83
+ "tailwind-merge": "^2.6.0",
84
+ "vaul": "^1.1.2"
85
+ },
86
+ "devDependencies": {
87
+ "@tanstack/react-table": "^8.21.3",
88
+ "@types/react": "^19.0.0",
89
+ "@types/react-dom": "^19.0.0",
90
+ "tsup": "^8.3.0",
91
+ "typescript": "^5.7.0"
92
+ },
93
+ "peerDependencies": {
94
+ "@tanstack/react-table": "^8.0.0 || ^9.0.0",
95
+ "react": "^18.0.0 || ^19.0.0",
96
+ "react-dom": "^18.0.0 || ^19.0.0",
97
+ "react-hook-form": "^7.0.0"
98
+ }
99
+ }