@carefully-built/ui 0.1.15
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 +148 -0
- package/dist/index.d.mts +1351 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +3489 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +70 -0
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@carefully-built/ui",
|
|
3
|
+
"version": "0.1.15",
|
|
4
|
+
"description": "Reusable React UI primitives and data-display components for Carefully Built SaaS apps.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Alessandro Dodi",
|
|
8
|
+
"homepage": "https://github.com/AlessandroDodi/carefully-built-saas-kit#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/AlessandroDodi/carefully-built-saas-kit.git",
|
|
12
|
+
"directory": "packages/ui"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/AlessandroDodi/carefully-built-saas-kit/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"react",
|
|
19
|
+
"saas",
|
|
20
|
+
"table",
|
|
21
|
+
"dashboard",
|
|
22
|
+
"components",
|
|
23
|
+
"tailwind"
|
|
24
|
+
],
|
|
25
|
+
"sideEffects": false,
|
|
26
|
+
"main": "./dist/index.mjs",
|
|
27
|
+
"module": "./dist/index.mjs",
|
|
28
|
+
"types": "./dist/index.d.mts",
|
|
29
|
+
"files": [
|
|
30
|
+
"dist"
|
|
31
|
+
],
|
|
32
|
+
"exports": {
|
|
33
|
+
".": {
|
|
34
|
+
"types": "./dist/index.d.mts",
|
|
35
|
+
"import": "./dist/index.mjs",
|
|
36
|
+
"default": "./dist/index.mjs"
|
|
37
|
+
},
|
|
38
|
+
"./package.json": "./package.json"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsdown src/index.ts --format esm --dts",
|
|
42
|
+
"prepublishOnly": "bun run typecheck && bun run build",
|
|
43
|
+
"typecheck": "tsc --noEmit"
|
|
44
|
+
},
|
|
45
|
+
"publishConfig": {
|
|
46
|
+
"access": "public"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"class-variance-authority": ">=0.7.0",
|
|
50
|
+
"clsx": ">=2.0.0",
|
|
51
|
+
"lucide-react": ">=0.400.0 || >=1.0.0",
|
|
52
|
+
"radix-ui": ">=1.0.0",
|
|
53
|
+
"react": ">=18.2.0 || >=19.0.0",
|
|
54
|
+
"react-day-picker": ">=9.0.0",
|
|
55
|
+
"react-dom": ">=18.2.0 || >=19.0.0",
|
|
56
|
+
"tailwind-merge": ">=2.0.0 || >=3.0.0",
|
|
57
|
+
"vaul": ">=1.0.0"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"class-variance-authority": "^0.7.1",
|
|
61
|
+
"clsx": "^2.1.1",
|
|
62
|
+
"lucide-react": "^1.8.0",
|
|
63
|
+
"radix-ui": "^1.4.3",
|
|
64
|
+
"react": "^19.2.3",
|
|
65
|
+
"react-day-picker": "^9.14.0",
|
|
66
|
+
"react-dom": "^19.2.3",
|
|
67
|
+
"tailwind-merge": "^3.5.0",
|
|
68
|
+
"vaul": "^1.1.2"
|
|
69
|
+
}
|
|
70
|
+
}
|