braid-ui 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/README.md +134 -0
- package/dist/braid-logo-343BOQZ2.png +0 -0
- package/dist/index.cjs +6271 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +1221 -0
- package/dist/index.d.ts +1221 -0
- package/dist/index.js +6086 -0
- package/dist/index.js.map +1 -0
- package/package.json +133 -0
package/package.json
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "braid-ui",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./components": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"import": "./dist/index.mjs",
|
|
18
|
+
"require": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./hooks": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"import": "./dist/index.mjs",
|
|
23
|
+
"require": "./dist/index.js"
|
|
24
|
+
},
|
|
25
|
+
"./pages": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"import": "./dist/index.mjs",
|
|
28
|
+
"require": "./dist/index.js"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
34
|
+
"keywords": [
|
|
35
|
+
"react",
|
|
36
|
+
"ui",
|
|
37
|
+
"components",
|
|
38
|
+
"typescript",
|
|
39
|
+
"tailwindcss",
|
|
40
|
+
"radix-ui"
|
|
41
|
+
],
|
|
42
|
+
"author": "Braid UI Kit",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "https://github.com/your-username/braid-ui-kit.git"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"react": ">=18.0.0",
|
|
50
|
+
"react-dom": ">=18.0.0"
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"dev": "vite",
|
|
54
|
+
"build": "vite build",
|
|
55
|
+
"build:dev": "vite build --mode development",
|
|
56
|
+
"build:lib": "tsup",
|
|
57
|
+
"build:lib:watch": "tsup --watch",
|
|
58
|
+
"lint": "eslint .",
|
|
59
|
+
"preview": "vite preview",
|
|
60
|
+
"prepublishOnly": "npm run build:lib"
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@hookform/resolvers": "^3.10.0",
|
|
64
|
+
"@radix-ui/react-accordion": "^1.2.11",
|
|
65
|
+
"@radix-ui/react-alert-dialog": "^1.1.14",
|
|
66
|
+
"@radix-ui/react-aspect-ratio": "^1.1.7",
|
|
67
|
+
"@radix-ui/react-avatar": "^1.1.10",
|
|
68
|
+
"@radix-ui/react-checkbox": "^1.3.2",
|
|
69
|
+
"@radix-ui/react-collapsible": "^1.1.11",
|
|
70
|
+
"@radix-ui/react-context-menu": "^2.2.15",
|
|
71
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
72
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
73
|
+
"@radix-ui/react-hover-card": "^1.1.14",
|
|
74
|
+
"@radix-ui/react-label": "^2.1.7",
|
|
75
|
+
"@radix-ui/react-menubar": "^1.1.15",
|
|
76
|
+
"@radix-ui/react-navigation-menu": "^1.2.13",
|
|
77
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
78
|
+
"@radix-ui/react-progress": "^1.1.7",
|
|
79
|
+
"@radix-ui/react-radio-group": "^1.3.7",
|
|
80
|
+
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
81
|
+
"@radix-ui/react-select": "^2.2.5",
|
|
82
|
+
"@radix-ui/react-separator": "^1.1.7",
|
|
83
|
+
"@radix-ui/react-slider": "^1.3.5",
|
|
84
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
85
|
+
"@radix-ui/react-switch": "^1.2.5",
|
|
86
|
+
"@radix-ui/react-tabs": "^1.1.12",
|
|
87
|
+
"@radix-ui/react-toast": "^1.2.14",
|
|
88
|
+
"@radix-ui/react-toggle": "^1.1.9",
|
|
89
|
+
"@radix-ui/react-toggle-group": "^1.1.10",
|
|
90
|
+
"@radix-ui/react-tooltip": "^1.2.7",
|
|
91
|
+
"@tanstack/react-query": "^5.83.0",
|
|
92
|
+
"class-variance-authority": "^0.7.1",
|
|
93
|
+
"clsx": "^2.1.1",
|
|
94
|
+
"cmdk": "^1.1.1",
|
|
95
|
+
"date-fns": "^3.6.0",
|
|
96
|
+
"embla-carousel-react": "^8.6.0",
|
|
97
|
+
"input-otp": "^1.4.2",
|
|
98
|
+
"lucide-react": "^0.462.0",
|
|
99
|
+
"next-themes": "^0.3.0",
|
|
100
|
+
"react": "^18.3.1",
|
|
101
|
+
"react-day-picker": "^9.11.0",
|
|
102
|
+
"react-dom": "^18.3.1",
|
|
103
|
+
"react-hook-form": "^7.61.1",
|
|
104
|
+
"react-resizable-panels": "^2.1.9",
|
|
105
|
+
"react-router-dom": "^6.30.1",
|
|
106
|
+
"recharts": "^2.15.4",
|
|
107
|
+
"sonner": "^1.7.4",
|
|
108
|
+
"tailwind-merge": "^2.6.0",
|
|
109
|
+
"tailwindcss-animate": "^1.0.7",
|
|
110
|
+
"vaul": "^0.9.9",
|
|
111
|
+
"zod": "^3.25.76"
|
|
112
|
+
},
|
|
113
|
+
"devDependencies": {
|
|
114
|
+
"@eslint/js": "^9.32.0",
|
|
115
|
+
"@tailwindcss/typography": "^0.5.16",
|
|
116
|
+
"@types/node": "^22.16.5",
|
|
117
|
+
"@types/react": "^18.3.23",
|
|
118
|
+
"@types/react-dom": "^18.3.7",
|
|
119
|
+
"@vitejs/plugin-react-swc": "^3.11.0",
|
|
120
|
+
"autoprefixer": "^10.4.21",
|
|
121
|
+
"eslint": "^9.32.0",
|
|
122
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
123
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
124
|
+
"globals": "^15.15.0",
|
|
125
|
+
"lovable-tagger": "^1.1.9",
|
|
126
|
+
"postcss": "^8.5.6",
|
|
127
|
+
"tailwindcss": "^3.4.17",
|
|
128
|
+
"tsup": "^8.5.0",
|
|
129
|
+
"typescript": "^5.8.3",
|
|
130
|
+
"typescript-eslint": "^8.38.0",
|
|
131
|
+
"vite": "^5.4.19"
|
|
132
|
+
}
|
|
133
|
+
}
|