kaleido-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.
@@ -0,0 +1 @@
1
+ export * from '../dist/native/index';
@@ -0,0 +1 @@
1
+ module.exports = require('../dist/native/index.cjs');
package/package.json ADDED
@@ -0,0 +1,124 @@
1
+ {
2
+ "name": "kaleido-ui",
3
+ "version": "0.1.0",
4
+ "description": "KaleidoSwap shared UI library — design tokens, web components (Tailwind + Radix), and React Native components extending WDK UI Kit",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./dist/web/index.cjs",
8
+ "module": "./dist/web/index.js",
9
+ "types": "./dist/web/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/web/index.d.ts",
13
+ "import": "./dist/web/index.js",
14
+ "require": "./dist/web/index.cjs"
15
+ },
16
+ "./tokens": {
17
+ "types": "./dist/tokens/index.d.ts",
18
+ "import": "./dist/tokens/index.js",
19
+ "require": "./dist/tokens/index.cjs"
20
+ },
21
+ "./native": {
22
+ "types": "./dist/native/index.d.ts",
23
+ "import": "./dist/native/index.js",
24
+ "require": "./dist/native/index.cjs"
25
+ },
26
+ "./tailwind": {
27
+ "types": "./dist/tailwind/index.d.ts",
28
+ "import": "./dist/tailwind/index.js",
29
+ "require": "./dist/tailwind/index.cjs"
30
+ },
31
+ "./css": "./dist/css/kaleido-ui.css"
32
+ },
33
+ "files": [
34
+ "dist",
35
+ "native",
36
+ "tokens",
37
+ "tailwind"
38
+ ],
39
+ "scripts": {
40
+ "build": "tsup && mkdir -p dist/css && cp src/css/kaleido-ui.css dist/css/kaleido-ui.css",
41
+ "dev": "tsup --watch",
42
+ "type-check": "tsc --noEmit",
43
+ "clean": "rm -rf dist"
44
+ },
45
+ "dependencies": {
46
+ "@tetherto/wdk-uikit-react-native": "^1.0.0-beta.2"
47
+ },
48
+ "peerDependencies": {
49
+ "@radix-ui/react-dialog": "^1.1.0",
50
+ "@radix-ui/react-label": "^2.1.0",
51
+ "@radix-ui/react-slot": "^1.2.0",
52
+ "@radix-ui/react-tabs": "^1.1.0",
53
+ "@radix-ui/react-toast": "^1.2.0",
54
+ "class-variance-authority": "^0.7.0",
55
+ "clsx": "^2.0.0",
56
+ "react": "^18.0.0 || ^19.0.0",
57
+ "react-dom": "^18.0.0 || ^19.0.0",
58
+ "react-native": ">=0.73.0",
59
+ "tailwind-merge": "^2.0.0"
60
+ },
61
+ "peerDependenciesMeta": {
62
+ "react-dom": {
63
+ "optional": true
64
+ },
65
+ "react-native": {
66
+ "optional": true
67
+ },
68
+ "@radix-ui/react-dialog": {
69
+ "optional": true
70
+ },
71
+ "@radix-ui/react-label": {
72
+ "optional": true
73
+ },
74
+ "@radix-ui/react-slot": {
75
+ "optional": true
76
+ },
77
+ "@radix-ui/react-tabs": {
78
+ "optional": true
79
+ },
80
+ "@radix-ui/react-toast": {
81
+ "optional": true
82
+ },
83
+ "class-variance-authority": {
84
+ "optional": true
85
+ },
86
+ "clsx": {
87
+ "optional": true
88
+ },
89
+ "tailwind-merge": {
90
+ "optional": true
91
+ }
92
+ },
93
+ "devDependencies": {
94
+ "@radix-ui/react-dialog": "^1.1.15",
95
+ "@radix-ui/react-label": "^2.1.8",
96
+ "@radix-ui/react-slot": "^1.2.4",
97
+ "@radix-ui/react-tabs": "^1.1.13",
98
+ "@radix-ui/react-toast": "^1.2.15",
99
+ "@types/react": "^19.2.14",
100
+ "@types/react-dom": "^19.2.3",
101
+ "@types/react-native": "^0.72.8",
102
+ "class-variance-authority": "^0.7.1",
103
+ "clsx": "^2.1.1",
104
+ "tailwind-merge": "^2.6.1",
105
+ "tsup": "^8.0.0",
106
+ "typescript": "^5.9.0"
107
+ },
108
+ "repository": {
109
+ "type": "git",
110
+ "url": "git+https://github.com/kaleidoswap/kaleido-ui.git"
111
+ },
112
+ "keywords": [
113
+ "kaleidoswap",
114
+ "ui",
115
+ "design-tokens",
116
+ "react",
117
+ "react-native",
118
+ "tailwind",
119
+ "radix"
120
+ ],
121
+ "publishConfig": {
122
+ "access": "public"
123
+ }
124
+ }
@@ -0,0 +1 @@
1
+ export * from '../dist/tailwind/index';
@@ -0,0 +1 @@
1
+ module.exports = require('../dist/tailwind/index.cjs');
@@ -0,0 +1 @@
1
+ export * from '../dist/tokens/index';
@@ -0,0 +1 @@
1
+ module.exports = require('../dist/tokens/index.cjs');