@g4rcez/components 0.0.12 → 0.0.13
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 +50 -12
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@g4rcez/components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"private": false,
|
|
6
|
+
"packageManager": "pnpm@8.15.3",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"directory": "dist"
|
|
9
|
+
},
|
|
6
10
|
"engines": {
|
|
7
11
|
"node": ">=20.14.0"
|
|
8
12
|
},
|
|
@@ -28,12 +32,12 @@
|
|
|
28
32
|
"test": "vitest run",
|
|
29
33
|
"test:watch": "vitest watch"
|
|
30
34
|
},
|
|
31
|
-
"
|
|
32
|
-
"
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"react": ">=18",
|
|
37
|
+
"react-dom": ">=18"
|
|
33
38
|
},
|
|
34
39
|
"dependencies": {
|
|
35
40
|
"@floating-ui/react": "0.26.19",
|
|
36
|
-
"@vitejs/plugin-react": "4.3.1",
|
|
37
41
|
"class-variance-authority": "0.7.0",
|
|
38
42
|
"clsx": "2.1.1",
|
|
39
43
|
"framer-motion": "11.3.0",
|
|
@@ -42,8 +46,6 @@
|
|
|
42
46
|
"lucide-react": "0.407.0",
|
|
43
47
|
"pretty-bytes": "6.1.1",
|
|
44
48
|
"qs": "6.12.3",
|
|
45
|
-
"react": "18",
|
|
46
|
-
"react-dom": "18",
|
|
47
49
|
"react-dropzone": "14.2.3",
|
|
48
50
|
"react-virtuoso": "4.7.11",
|
|
49
51
|
"sidekicker": "0.1.8",
|
|
@@ -60,6 +62,7 @@
|
|
|
60
62
|
"@types/qs": "6.9.15",
|
|
61
63
|
"@types/react": "18.3.3",
|
|
62
64
|
"@types/react-dom": "18.3.0",
|
|
65
|
+
"@vitejs/plugin-react": "4.3.1",
|
|
63
66
|
"postcss": "8.4.39",
|
|
64
67
|
"prettier": "3.3.2",
|
|
65
68
|
"tailwindcss": "3.4.4",
|
|
@@ -73,7 +76,10 @@
|
|
|
73
76
|
"main": "./dist/index.umd.js",
|
|
74
77
|
"browser": "./dist/index.umd.js",
|
|
75
78
|
"module": "./dist/index.cjs",
|
|
76
|
-
"
|
|
79
|
+
"files": [
|
|
80
|
+
"dist",
|
|
81
|
+
"dist/index.css"
|
|
82
|
+
],
|
|
77
83
|
"exports": {
|
|
78
84
|
".": {
|
|
79
85
|
"types": {
|
|
@@ -112,10 +118,42 @@
|
|
|
112
118
|
"import": "./dist/components/core/button.js",
|
|
113
119
|
"require": "./dist/components/core/button.js",
|
|
114
120
|
"default": "./dist/components/core/button.js"
|
|
121
|
+
},
|
|
122
|
+
"./input": {
|
|
123
|
+
"type": "./dist/components/form/input.d.ts",
|
|
124
|
+
"import": "./dist/components/form/input.js",
|
|
125
|
+
"require": "./dist/components/form/input.js",
|
|
126
|
+
"default": "./dist/components/form/input.js"
|
|
127
|
+
},
|
|
128
|
+
"./autocomplete": {
|
|
129
|
+
"type": "./dist/components/form/autocomplete.d.ts",
|
|
130
|
+
"import": "./dist/components/form/autocomplete.js",
|
|
131
|
+
"require": "./dist/components/form/autocomplete.js",
|
|
132
|
+
"default": "./dist/components/form/autocomplete.js"
|
|
133
|
+
},
|
|
134
|
+
"./select": {
|
|
135
|
+
"type": "./dist/components/form/select.d.ts",
|
|
136
|
+
"import": "./dist/components/form/select.js",
|
|
137
|
+
"require": "./dist/components/form/select.js",
|
|
138
|
+
"default": "./dist/components/form/select.js"
|
|
139
|
+
},
|
|
140
|
+
"./dropdown": {
|
|
141
|
+
"type": "./dist/components/floating/dropdown.d.ts",
|
|
142
|
+
"import": "./dist/components/floating/dropdown.js",
|
|
143
|
+
"require": "./dist/components/floating/dropdown.js",
|
|
144
|
+
"default": "./dist/components/floating/dropdown.js"
|
|
145
|
+
},
|
|
146
|
+
"./tooltip": {
|
|
147
|
+
"type": "./dist/components/floating/tooltip.d.ts",
|
|
148
|
+
"import": "./dist/components/floating/tooltip.js",
|
|
149
|
+
"require": "./dist/components/floating/tooltip.js",
|
|
150
|
+
"default": "./dist/components/floating/tooltip.js"
|
|
151
|
+
},
|
|
152
|
+
"./card": {
|
|
153
|
+
"type": "./dist/components/display/card.d.ts",
|
|
154
|
+
"import": "./dist/components/display/card.js",
|
|
155
|
+
"require": "./dist/components/display/card.js",
|
|
156
|
+
"default": "./dist/components/display/card.js"
|
|
115
157
|
}
|
|
116
|
-
}
|
|
117
|
-
"files": [
|
|
118
|
-
"dist",
|
|
119
|
-
"dist/index.css"
|
|
120
|
-
]
|
|
158
|
+
}
|
|
121
159
|
}
|