@cocliny/ui-library 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/dist/index.d.ts +1346 -0
- package/dist/index.js +3611 -0
- package/dist/index.js.map +1 -0
- package/dist/styles.css +3212 -0
- package/package.json +73 -0
package/package.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cocliny/ui-library",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Presentation-only React components: typography, buttons, feedback, inputs, data display, navigation, layout. Components receive data, render it, and emit callbacks — they never fetch and never contain business logic.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.css"
|
|
8
|
+
],
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./styles.css": "./dist/styles.css"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@hookform/resolvers": "^5.4.0",
|
|
21
|
+
"@radix-ui/react-accordion": "^1.2.16",
|
|
22
|
+
"@radix-ui/react-alert-dialog": "^1.1.19",
|
|
23
|
+
"@radix-ui/react-avatar": "^1.2.2",
|
|
24
|
+
"@radix-ui/react-dialog": "^1.1.19",
|
|
25
|
+
"@radix-ui/react-dropdown-menu": "^2.1.20",
|
|
26
|
+
"@radix-ui/react-label": "^2.1.11",
|
|
27
|
+
"@radix-ui/react-popover": "^1.1.19",
|
|
28
|
+
"@radix-ui/react-slot": "^1.3.0",
|
|
29
|
+
"@radix-ui/react-toast": "^1.2.19",
|
|
30
|
+
"@radix-ui/react-toggle-group": "^1.1.15",
|
|
31
|
+
"@radix-ui/react-tooltip": "^1.2.12",
|
|
32
|
+
"@tanstack/react-table": "^8.21.3",
|
|
33
|
+
"@tanstack/react-virtual": "^3.14.6",
|
|
34
|
+
"clsx": "^2.1.1",
|
|
35
|
+
"cmdk": "^1.1.1",
|
|
36
|
+
"date-fns": "^4.4.0",
|
|
37
|
+
"react-day-picker": "^8.10.1",
|
|
38
|
+
"react-hook-form": "^7.81.0",
|
|
39
|
+
"recharts": "^3.9.2",
|
|
40
|
+
"tailwind-merge": "^3.3.0",
|
|
41
|
+
"zod": "^4.4.3",
|
|
42
|
+
"@cocliny/util-library": "0.1.0"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
46
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@tailwindcss/cli": "^4.1.0",
|
|
50
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
51
|
+
"@testing-library/react": "^16.3.0",
|
|
52
|
+
"@testing-library/user-event": "^14.6.1",
|
|
53
|
+
"@types/react": "^19.1.0",
|
|
54
|
+
"@types/react-dom": "^19.1.0",
|
|
55
|
+
"jsdom": "^26.0.0",
|
|
56
|
+
"react": "^19.1.0",
|
|
57
|
+
"react-dom": "^19.1.0",
|
|
58
|
+
"tailwindcss": "^4.1.0",
|
|
59
|
+
"tsup": "^8.5.0",
|
|
60
|
+
"typescript": "^5.9.0",
|
|
61
|
+
"vitest": "^3.2.0"
|
|
62
|
+
},
|
|
63
|
+
"publishConfig": {
|
|
64
|
+
"access": "public"
|
|
65
|
+
},
|
|
66
|
+
"scripts": {
|
|
67
|
+
"build": "tsup && tailwindcss -i src/styles/index.css -o dist/styles.css",
|
|
68
|
+
"dev": "tsup --watch",
|
|
69
|
+
"typecheck": "tsc --noEmit",
|
|
70
|
+
"test": "vitest run",
|
|
71
|
+
"test:watch": "vitest"
|
|
72
|
+
}
|
|
73
|
+
}
|