@andreyfedkovich/cozy-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/README.md +718 -0
- package/dist/index.d.ts +661 -0
- package/dist/styles.css +1 -0
- package/dist/ui-library.cjs.js +48 -0
- package/dist/ui-library.cjs.js.map +1 -0
- package/dist/ui-library.es.js +10518 -0
- package/dist/ui-library.es.js.map +1 -0
- package/package.json +149 -0
package/package.json
ADDED
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@andreyfedkovich/cozy-ui",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "Cozy UI — a premium, opinionated React component library for crafted product UIs. Typed, themeable, SSR-safe, tree-shakeable.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"react",
|
|
8
|
+
"react-19",
|
|
9
|
+
"ui",
|
|
10
|
+
"components",
|
|
11
|
+
"component-library",
|
|
12
|
+
"design-system",
|
|
13
|
+
"typescript",
|
|
14
|
+
"tailwind",
|
|
15
|
+
"scss-modules",
|
|
16
|
+
"radix",
|
|
17
|
+
"premium-ui",
|
|
18
|
+
"cozy-ui"
|
|
19
|
+
],
|
|
20
|
+
"author": "Andrey Fedkovich",
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"homepage": "https://github.com/andreyfedkovich/cozy-ui#readme",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/andreyfedkovich/cozy-ui.git"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/andreyfedkovich/cozy-ui/issues"
|
|
29
|
+
},
|
|
30
|
+
"sideEffects": [
|
|
31
|
+
"**/*.css"
|
|
32
|
+
],
|
|
33
|
+
"type": "module",
|
|
34
|
+
"main": "dist/ui-library.cjs.js",
|
|
35
|
+
"module": "dist/ui-library.es.js",
|
|
36
|
+
"types": "dist/index.d.ts",
|
|
37
|
+
"exports": {
|
|
38
|
+
".": {
|
|
39
|
+
"types": "./dist/index.d.ts",
|
|
40
|
+
"import": "./dist/ui-library.es.js",
|
|
41
|
+
"require": "./dist/ui-library.cjs.js"
|
|
42
|
+
},
|
|
43
|
+
"./styles.css": "./dist/styles.css"
|
|
44
|
+
},
|
|
45
|
+
"files": [
|
|
46
|
+
"dist/index.d.ts",
|
|
47
|
+
"dist/styles.css",
|
|
48
|
+
"dist/ui-library.es.js",
|
|
49
|
+
"dist/ui-library.cjs.js",
|
|
50
|
+
"dist/*.map",
|
|
51
|
+
"README.md"
|
|
52
|
+
],
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"react": ">=18.0.0",
|
|
55
|
+
"react-dom": ">=18.0.0"
|
|
56
|
+
},
|
|
57
|
+
"scripts": {
|
|
58
|
+
"dev": "vite dev",
|
|
59
|
+
"build": "vite build",
|
|
60
|
+
"build:dev": "vite build --mode development",
|
|
61
|
+
"preview": "vite preview",
|
|
62
|
+
"lint": "eslint .",
|
|
63
|
+
"format": "prettier --write .",
|
|
64
|
+
"build:lib": "vite build --mode library",
|
|
65
|
+
"prepublishOnly": "npm run build:lib",
|
|
66
|
+
"test": "vitest run",
|
|
67
|
+
"test:watch": "vitest"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@cloudflare/vite-plugin": "^1.25.5",
|
|
71
|
+
"@eslint/js": "^9.32.0",
|
|
72
|
+
"@hookform/resolvers": "^5.2.2",
|
|
73
|
+
"@lovable.dev/vite-tanstack-config": "^1.4.0",
|
|
74
|
+
"@radix-ui/react-accordion": "^1.2.12",
|
|
75
|
+
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
76
|
+
"@radix-ui/react-aspect-ratio": "^1.1.8",
|
|
77
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
78
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
79
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
80
|
+
"@radix-ui/react-context-menu": "^2.2.16",
|
|
81
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
82
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
83
|
+
"@radix-ui/react-hover-card": "^1.1.15",
|
|
84
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
85
|
+
"@radix-ui/react-menubar": "^1.1.16",
|
|
86
|
+
"@radix-ui/react-navigation-menu": "^1.2.14",
|
|
87
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
88
|
+
"@radix-ui/react-progress": "^1.1.8",
|
|
89
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
90
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
91
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
92
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
93
|
+
"@radix-ui/react-slider": "^1.3.6",
|
|
94
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
95
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
96
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
97
|
+
"@radix-ui/react-toggle": "^1.1.10",
|
|
98
|
+
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
99
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
100
|
+
"@tailwindcss/vite": "^4.2.1",
|
|
101
|
+
"@tanstack/react-query": "^5.83.0",
|
|
102
|
+
"@tanstack/react-router": "^1.168.0",
|
|
103
|
+
"@tanstack/react-start": "^1.167.14",
|
|
104
|
+
"@tanstack/router-plugin": "^1.167.10",
|
|
105
|
+
"@types/node": "^22.16.5",
|
|
106
|
+
"@types/react": "^19.2.0",
|
|
107
|
+
"@types/react-dom": "^19.2.0",
|
|
108
|
+
"@vitejs/plugin-react": "^5.0.4",
|
|
109
|
+
"class-variance-authority": "^0.7.1",
|
|
110
|
+
"clsx": "^2.1.1",
|
|
111
|
+
"cmdk": "^1.1.1",
|
|
112
|
+
"date-fns": "^4.1.0",
|
|
113
|
+
"embla-carousel-react": "^8.6.0",
|
|
114
|
+
"eslint": "^9.32.0",
|
|
115
|
+
"eslint-config-prettier": "^10.1.1",
|
|
116
|
+
"eslint-plugin-prettier": "^5.2.6",
|
|
117
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
118
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
119
|
+
"globals": "^15.15.0",
|
|
120
|
+
"input-otp": "^1.4.2",
|
|
121
|
+
"lucide-react": "^0.575.0",
|
|
122
|
+
"prettier": "^3.7.3",
|
|
123
|
+
"react": "^19.2.0",
|
|
124
|
+
"react-day-picker": "^9.14.0",
|
|
125
|
+
"react-dom": "^19.2.0",
|
|
126
|
+
"react-hook-form": "^7.71.2",
|
|
127
|
+
"react-resizable-panels": "^4.6.5",
|
|
128
|
+
"recharts": "^2.15.4",
|
|
129
|
+
"sass": "^1.99.0",
|
|
130
|
+
"sonner": "^2.0.7",
|
|
131
|
+
"tailwind-merge": "^3.5.0",
|
|
132
|
+
"tailwindcss": "^4.2.1",
|
|
133
|
+
"tw-animate-css": "^1.3.4",
|
|
134
|
+
"typescript": "^5.8.3",
|
|
135
|
+
"typescript-eslint": "^8.56.1",
|
|
136
|
+
"vaul": "^1.1.2",
|
|
137
|
+
"vite": "^7.3.1",
|
|
138
|
+
"vite-plugin-dts": "^4.5.4",
|
|
139
|
+
"vite-plugin-svgr": "^5.2.0",
|
|
140
|
+
"vite-tsconfig-paths": "^6.0.2",
|
|
141
|
+
"zod": "^3.24.2",
|
|
142
|
+
"vitest": "^3.2.4"
|
|
143
|
+
},
|
|
144
|
+
"dependencies": {
|
|
145
|
+
"@floating-ui/react": "^0.27.19",
|
|
146
|
+
"classnames": "^2.5.1",
|
|
147
|
+
"react-router-dom": "^7.14.2"
|
|
148
|
+
}
|
|
149
|
+
}
|