duokit-ui 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,119 @@
1
+ {
2
+ "name": "duokit-ui",
3
+ "version": "0.1.0",
4
+ "description": "A modern React component library built with Radix UI and Tailwind CSS",
5
+ "sideEffects": false,
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "main": "./dist/index.cjs",
9
+ "module": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "import": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/index.js"
16
+ },
17
+ "require": {
18
+ "types": "./dist/index.d.cts",
19
+ "default": "./dist/index.cjs"
20
+ }
21
+ },
22
+ "./styles.css": "./dist/styles.css"
23
+ },
24
+ "files": ["dist"],
25
+ "scripts": {
26
+ "build": "tsup",
27
+ "dev": "tsup --watch",
28
+ "lint": "biome check .",
29
+ "format": "biome format --write .",
30
+ "clean": "rm -rf .turbo node_modules dist",
31
+ "prepublishOnly": "pnpm run build"
32
+ },
33
+ "devDependencies": {
34
+ "@biomejs/biome": "^2.3.13",
35
+ "@duokit/tsconfig": "workspace:*",
36
+ "@types/node": "^22.13.10",
37
+ "@types/react": "^19.2.0",
38
+ "@types/react-dom": "^19.2.0",
39
+ "tsup": "^8.0.2",
40
+ "typescript": "5.5.4"
41
+ },
42
+ "dependencies": {
43
+ "@base-ui/react": "^1.1.0",
44
+ "@radix-ui/react-accordion": "^1.2.12",
45
+ "@radix-ui/react-alert-dialog": "^1.1.15",
46
+ "@radix-ui/react-aspect-ratio": "^1.1.8",
47
+ "@radix-ui/react-avatar": "^1.1.11",
48
+ "@radix-ui/react-checkbox": "^1.3.3",
49
+ "@radix-ui/react-collapsible": "^1.1.12",
50
+ "@radix-ui/react-context-menu": "^2.2.16",
51
+ "@radix-ui/react-dialog": "^1.1.15",
52
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
53
+ "@radix-ui/react-hover-card": "^1.1.15",
54
+ "@radix-ui/react-label": "^2.1.8",
55
+ "@radix-ui/react-menubar": "^1.1.16",
56
+ "@radix-ui/react-navigation-menu": "^1.2.14",
57
+ "@radix-ui/react-popover": "^1.1.15",
58
+ "@radix-ui/react-radio-group": "^1.3.8",
59
+ "@radix-ui/react-scroll-area": "^1.2.10",
60
+ "@radix-ui/react-select": "^2.2.6",
61
+ "@radix-ui/react-separator": "^1.1.8",
62
+ "@radix-ui/react-slot": "^1.2.4",
63
+ "@radix-ui/react-switch": "^1.2.6",
64
+ "@radix-ui/react-tabs": "^1.1.13",
65
+ "@radix-ui/react-toggle": "^1.1.10",
66
+ "@radix-ui/react-toggle-group": "^1.1.11",
67
+ "@radix-ui/react-tooltip": "^1.2.8",
68
+ "@tanstack/react-table": "^8.21.3",
69
+ "class-variance-authority": "^0.7.1",
70
+ "clsx": "^2.1.1",
71
+ "cmdk": "^1.1.1",
72
+ "date-fns": "^4.1.0",
73
+ "date-fns-tz": "^3.2.0",
74
+ "input-otp": "^1.4.2",
75
+ "lucide-react": "^0.561.0",
76
+ "react-day-picker": "^9.12.0",
77
+ "react-resizable-panels": "^4.5.6",
78
+ "recharts": "2.15.4",
79
+ "sonner": "^2.0.7",
80
+ "tailwind-merge": "^3.4.0",
81
+ "vaul": "^1.1.2"
82
+ },
83
+ "peerDependencies": {
84
+ "react": "^18.0.0 || ^19.0.0",
85
+ "react-dom": "^18.0.0 || ^19.0.0",
86
+ "tailwindcss": "^4.0.0",
87
+ "next-themes": "^0.4.0",
88
+ "next-intl": "^4.0.0"
89
+ },
90
+ "peerDependenciesMeta": {
91
+ "next-themes": {
92
+ "optional": true
93
+ },
94
+ "next-intl": {
95
+ "optional": true
96
+ }
97
+ },
98
+ "keywords": [
99
+ "react",
100
+ "components",
101
+ "ui",
102
+ "design-system",
103
+ "tailwindcss",
104
+ "radix-ui",
105
+ "shadcn"
106
+ ],
107
+ "repository": {
108
+ "type": "git",
109
+ "url": "https://github.com/renatoastra/duo-kit.git",
110
+ "directory": "packages/ui"
111
+ },
112
+ "homepage": "https://github.com/renatoastra/duo-kit#readme",
113
+ "bugs": {
114
+ "url": "https://github.com/renatoastra/duo-kit/issues"
115
+ },
116
+ "publishConfig": {
117
+ "access": "public"
118
+ }
119
+ }