sk-clib 0.0.4 → 0.0.8
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.js +0 -1
- package/dist/styles.css +328 -0
- package/dist/ui/button/components/button.svelte +24 -0
- package/dist/ui/button/components/button.svelte.d.ts +10 -0
- package/dist/ui/button/index.d.ts +2 -0
- package/dist/ui/button/index.js +1 -0
- package/dist/ui/button/types.d.ts +4 -0
- package/dist/ui/button/types.js +1 -0
- package/dist/ui/index.d.ts +4 -3
- package/dist/ui/index.js +7 -3
- package/package.json +34 -30
package/dist/index.js
CHANGED
package/dist/styles.css
ADDED
|
@@ -0,0 +1,328 @@
|
|
|
1
|
+
/*! tailwindcss v4.1.5 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
4
|
+
@layer theme {
|
|
5
|
+
:root, :host {
|
|
6
|
+
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
7
|
+
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
8
|
+
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
9
|
+
"Courier New", monospace;
|
|
10
|
+
--color-black: #000;
|
|
11
|
+
--color-white: #fff;
|
|
12
|
+
--spacing: 0.25rem;
|
|
13
|
+
--text-xs: 0.75rem;
|
|
14
|
+
--text-xs--line-height: calc(1 / 0.75);
|
|
15
|
+
--text-sm: 0.875rem;
|
|
16
|
+
--text-sm--line-height: calc(1.25 / 0.875);
|
|
17
|
+
--text-base: 1rem;
|
|
18
|
+
--text-base--line-height: calc(1.5 / 1);
|
|
19
|
+
--text-lg: 1.125rem;
|
|
20
|
+
--text-lg--line-height: calc(1.75 / 1.125);
|
|
21
|
+
--text-xl: 1.25rem;
|
|
22
|
+
--text-xl--line-height: calc(1.75 / 1.25);
|
|
23
|
+
--text-2xl: 1.5rem;
|
|
24
|
+
--text-2xl--line-height: calc(2 / 1.5);
|
|
25
|
+
--font-weight-light: 300;
|
|
26
|
+
--font-weight-normal: 400;
|
|
27
|
+
--font-weight-semibold: 600;
|
|
28
|
+
--font-weight-bold: 700;
|
|
29
|
+
--font-weight-extrabold: 800;
|
|
30
|
+
--radius-md: 0.375rem;
|
|
31
|
+
--default-font-family: var(--font-sans);
|
|
32
|
+
--default-mono-font-family: var(--font-mono);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
@layer base {
|
|
36
|
+
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
37
|
+
box-sizing: border-box;
|
|
38
|
+
margin: 0;
|
|
39
|
+
padding: 0;
|
|
40
|
+
border: 0 solid;
|
|
41
|
+
}
|
|
42
|
+
html, :host {
|
|
43
|
+
line-height: 1.5;
|
|
44
|
+
-webkit-text-size-adjust: 100%;
|
|
45
|
+
tab-size: 4;
|
|
46
|
+
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
47
|
+
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
48
|
+
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
49
|
+
-webkit-tap-highlight-color: transparent;
|
|
50
|
+
}
|
|
51
|
+
hr {
|
|
52
|
+
height: 0;
|
|
53
|
+
color: inherit;
|
|
54
|
+
border-top-width: 1px;
|
|
55
|
+
}
|
|
56
|
+
abbr:where([title]) {
|
|
57
|
+
-webkit-text-decoration: underline dotted;
|
|
58
|
+
text-decoration: underline dotted;
|
|
59
|
+
}
|
|
60
|
+
h1, h2, h3, h4, h5, h6 {
|
|
61
|
+
font-size: inherit;
|
|
62
|
+
font-weight: inherit;
|
|
63
|
+
}
|
|
64
|
+
a {
|
|
65
|
+
color: inherit;
|
|
66
|
+
-webkit-text-decoration: inherit;
|
|
67
|
+
text-decoration: inherit;
|
|
68
|
+
}
|
|
69
|
+
b, strong {
|
|
70
|
+
font-weight: bolder;
|
|
71
|
+
}
|
|
72
|
+
code, kbd, samp, pre {
|
|
73
|
+
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
74
|
+
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
75
|
+
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
76
|
+
font-size: 1em;
|
|
77
|
+
}
|
|
78
|
+
small {
|
|
79
|
+
font-size: 80%;
|
|
80
|
+
}
|
|
81
|
+
sub, sup {
|
|
82
|
+
font-size: 75%;
|
|
83
|
+
line-height: 0;
|
|
84
|
+
position: relative;
|
|
85
|
+
vertical-align: baseline;
|
|
86
|
+
}
|
|
87
|
+
sub {
|
|
88
|
+
bottom: -0.25em;
|
|
89
|
+
}
|
|
90
|
+
sup {
|
|
91
|
+
top: -0.5em;
|
|
92
|
+
}
|
|
93
|
+
table {
|
|
94
|
+
text-indent: 0;
|
|
95
|
+
border-color: inherit;
|
|
96
|
+
border-collapse: collapse;
|
|
97
|
+
}
|
|
98
|
+
:-moz-focusring {
|
|
99
|
+
outline: auto;
|
|
100
|
+
}
|
|
101
|
+
progress {
|
|
102
|
+
vertical-align: baseline;
|
|
103
|
+
}
|
|
104
|
+
summary {
|
|
105
|
+
display: list-item;
|
|
106
|
+
}
|
|
107
|
+
ol, ul, menu {
|
|
108
|
+
list-style: none;
|
|
109
|
+
}
|
|
110
|
+
img, svg, video, canvas, audio, iframe, embed, object {
|
|
111
|
+
display: block;
|
|
112
|
+
vertical-align: middle;
|
|
113
|
+
}
|
|
114
|
+
img, video {
|
|
115
|
+
max-width: 100%;
|
|
116
|
+
height: auto;
|
|
117
|
+
}
|
|
118
|
+
button, input, select, optgroup, textarea, ::file-selector-button {
|
|
119
|
+
font: inherit;
|
|
120
|
+
font-feature-settings: inherit;
|
|
121
|
+
font-variation-settings: inherit;
|
|
122
|
+
letter-spacing: inherit;
|
|
123
|
+
color: inherit;
|
|
124
|
+
border-radius: 0;
|
|
125
|
+
background-color: transparent;
|
|
126
|
+
opacity: 1;
|
|
127
|
+
}
|
|
128
|
+
:where(select:is([multiple], [size])) optgroup {
|
|
129
|
+
font-weight: bolder;
|
|
130
|
+
}
|
|
131
|
+
:where(select:is([multiple], [size])) optgroup option {
|
|
132
|
+
padding-inline-start: 20px;
|
|
133
|
+
}
|
|
134
|
+
::file-selector-button {
|
|
135
|
+
margin-inline-end: 4px;
|
|
136
|
+
}
|
|
137
|
+
::placeholder {
|
|
138
|
+
opacity: 1;
|
|
139
|
+
}
|
|
140
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
141
|
+
::placeholder {
|
|
142
|
+
color: currentcolor;
|
|
143
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
144
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
textarea {
|
|
149
|
+
resize: vertical;
|
|
150
|
+
}
|
|
151
|
+
::-webkit-search-decoration {
|
|
152
|
+
-webkit-appearance: none;
|
|
153
|
+
}
|
|
154
|
+
::-webkit-date-and-time-value {
|
|
155
|
+
min-height: 1lh;
|
|
156
|
+
text-align: inherit;
|
|
157
|
+
}
|
|
158
|
+
::-webkit-datetime-edit {
|
|
159
|
+
display: inline-flex;
|
|
160
|
+
}
|
|
161
|
+
::-webkit-datetime-edit-fields-wrapper {
|
|
162
|
+
padding: 0;
|
|
163
|
+
}
|
|
164
|
+
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
|
165
|
+
padding-block: 0;
|
|
166
|
+
}
|
|
167
|
+
:-moz-ui-invalid {
|
|
168
|
+
box-shadow: none;
|
|
169
|
+
}
|
|
170
|
+
button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
|
|
171
|
+
appearance: button;
|
|
172
|
+
}
|
|
173
|
+
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
|
174
|
+
height: auto;
|
|
175
|
+
}
|
|
176
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
|
177
|
+
display: none !important;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
@layer utilities {
|
|
181
|
+
.static {
|
|
182
|
+
position: static;
|
|
183
|
+
}
|
|
184
|
+
.container {
|
|
185
|
+
width: 100%;
|
|
186
|
+
@media (width >= 40rem) {
|
|
187
|
+
max-width: 40rem;
|
|
188
|
+
}
|
|
189
|
+
@media (width >= 48rem) {
|
|
190
|
+
max-width: 48rem;
|
|
191
|
+
}
|
|
192
|
+
@media (width >= 64rem) {
|
|
193
|
+
max-width: 64rem;
|
|
194
|
+
}
|
|
195
|
+
@media (width >= 80rem) {
|
|
196
|
+
max-width: 80rem;
|
|
197
|
+
}
|
|
198
|
+
@media (width >= 96rem) {
|
|
199
|
+
max-width: 96rem;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
.flex {
|
|
203
|
+
display: flex;
|
|
204
|
+
}
|
|
205
|
+
.aspect-square {
|
|
206
|
+
aspect-ratio: 1 / 1;
|
|
207
|
+
}
|
|
208
|
+
.size-full {
|
|
209
|
+
width: 100%;
|
|
210
|
+
height: 100%;
|
|
211
|
+
}
|
|
212
|
+
.h-full {
|
|
213
|
+
height: 100%;
|
|
214
|
+
}
|
|
215
|
+
.w-full {
|
|
216
|
+
width: 100%;
|
|
217
|
+
}
|
|
218
|
+
.shrink-0 {
|
|
219
|
+
flex-shrink: 0;
|
|
220
|
+
}
|
|
221
|
+
.cursor-auto {
|
|
222
|
+
cursor: auto;
|
|
223
|
+
}
|
|
224
|
+
.cursor-default {
|
|
225
|
+
cursor: default;
|
|
226
|
+
}
|
|
227
|
+
.cursor-pointer {
|
|
228
|
+
cursor: pointer;
|
|
229
|
+
}
|
|
230
|
+
.flex-col {
|
|
231
|
+
flex-direction: column;
|
|
232
|
+
}
|
|
233
|
+
.flex-row {
|
|
234
|
+
flex-direction: row;
|
|
235
|
+
}
|
|
236
|
+
.items-center {
|
|
237
|
+
align-items: center;
|
|
238
|
+
}
|
|
239
|
+
.justify-center {
|
|
240
|
+
justify-content: center;
|
|
241
|
+
}
|
|
242
|
+
.rounded-md {
|
|
243
|
+
border-radius: var(--radius-md);
|
|
244
|
+
}
|
|
245
|
+
.bg-\[var\(--color-primary\)\] {
|
|
246
|
+
background-color: var(--color-primary);
|
|
247
|
+
}
|
|
248
|
+
.bg-black {
|
|
249
|
+
background-color: var(--color-black);
|
|
250
|
+
}
|
|
251
|
+
.px-4 {
|
|
252
|
+
padding-inline: calc(var(--spacing) * 4);
|
|
253
|
+
}
|
|
254
|
+
.py-2 {
|
|
255
|
+
padding-block: calc(var(--spacing) * 2);
|
|
256
|
+
}
|
|
257
|
+
.text-2xl {
|
|
258
|
+
font-size: var(--text-2xl);
|
|
259
|
+
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
260
|
+
}
|
|
261
|
+
.text-base {
|
|
262
|
+
font-size: var(--text-base);
|
|
263
|
+
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
264
|
+
}
|
|
265
|
+
.text-lg {
|
|
266
|
+
font-size: var(--text-lg);
|
|
267
|
+
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
268
|
+
}
|
|
269
|
+
.text-sm {
|
|
270
|
+
font-size: var(--text-sm);
|
|
271
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
272
|
+
}
|
|
273
|
+
.text-xl {
|
|
274
|
+
font-size: var(--text-xl);
|
|
275
|
+
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
276
|
+
}
|
|
277
|
+
.text-xs {
|
|
278
|
+
font-size: var(--text-xs);
|
|
279
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
280
|
+
}
|
|
281
|
+
.font-bold {
|
|
282
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
283
|
+
font-weight: var(--font-weight-bold);
|
|
284
|
+
}
|
|
285
|
+
.font-extrabold {
|
|
286
|
+
--tw-font-weight: var(--font-weight-extrabold);
|
|
287
|
+
font-weight: var(--font-weight-extrabold);
|
|
288
|
+
}
|
|
289
|
+
.font-light {
|
|
290
|
+
--tw-font-weight: var(--font-weight-light);
|
|
291
|
+
font-weight: var(--font-weight-light);
|
|
292
|
+
}
|
|
293
|
+
.font-normal {
|
|
294
|
+
--tw-font-weight: var(--font-weight-normal);
|
|
295
|
+
font-weight: var(--font-weight-normal);
|
|
296
|
+
}
|
|
297
|
+
.font-semibold {
|
|
298
|
+
--tw-font-weight: var(--font-weight-semibold);
|
|
299
|
+
font-weight: var(--font-weight-semibold);
|
|
300
|
+
}
|
|
301
|
+
.text-white {
|
|
302
|
+
color: var(--color-white);
|
|
303
|
+
}
|
|
304
|
+
.italic {
|
|
305
|
+
font-style: italic;
|
|
306
|
+
}
|
|
307
|
+
.data-\[state\=toggled\]\:bg-black {
|
|
308
|
+
&[data-state="toggled"] {
|
|
309
|
+
background-color: var(--color-black);
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
.data-\[state\=toggled\]\:text-white {
|
|
313
|
+
&[data-state="toggled"] {
|
|
314
|
+
color: var(--color-white);
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
@property --tw-font-weight {
|
|
319
|
+
syntax: "*";
|
|
320
|
+
inherits: false;
|
|
321
|
+
}
|
|
322
|
+
@layer properties {
|
|
323
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
324
|
+
*, ::before, ::after, ::backdrop {
|
|
325
|
+
--tw-font-weight: initial;
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// --- Logic ---
|
|
3
|
+
import { cn } from '../../../utils';
|
|
4
|
+
import type { Props } from '..';
|
|
5
|
+
|
|
6
|
+
let { children, class: className, buttonClass = $bindable('px-4 py-2 rounded-md bg-[var(--color-primary)] color-[var(--color-white)]'), ...rest }: Props = $props();
|
|
7
|
+
|
|
8
|
+
// Setup Button's Default Class
|
|
9
|
+
let buttonCls = $state(cn(buttonClass, className));
|
|
10
|
+
$effect(() => {
|
|
11
|
+
buttonCls = cn(buttonClass, className);
|
|
12
|
+
});
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<button class={cn(buttonCls)} {...rest} tabindex="0">
|
|
16
|
+
{@render children?.()}
|
|
17
|
+
</button>
|
|
18
|
+
|
|
19
|
+
<!--@component
|
|
20
|
+
Generated by SvelteForge🔥
|
|
21
|
+
|
|
22
|
+
# Button Component
|
|
23
|
+
Simple button component for easy customization and easy onclick functionality
|
|
24
|
+
-->
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Props } from '..';
|
|
2
|
+
/**
|
|
3
|
+
* Generated by SvelteForge🔥
|
|
4
|
+
*
|
|
5
|
+
* # Button Component
|
|
6
|
+
* Simple button component for easy customization and easy onclick functionality
|
|
7
|
+
*/
|
|
8
|
+
declare const Button: import("svelte").Component<Props, {}, "buttonClass">;
|
|
9
|
+
type Button = ReturnType<typeof Button>;
|
|
10
|
+
export default Button;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as _, default as Root } from "./components/button.svelte";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/ui/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export { default as
|
|
2
|
-
export { default as
|
|
3
|
-
export { default as
|
|
1
|
+
export { default as Button } from "./button/components/button.svelte";
|
|
2
|
+
export { default as Flex } from "./flex/components/flex.svelte";
|
|
3
|
+
export { default as Frame } from "./frame/components/frame.svelte";
|
|
4
|
+
export { default as Header } from "./header/components/header.svelte";
|
|
4
5
|
export { default as Text } from "./text/components/text.svelte";
|
package/dist/ui/index.js
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
// Reexport your entry components here
|
|
4
|
+
export { default as Button } from "./button/components/button.svelte";
|
|
5
|
+
export { default as Flex } from "./flex/components/flex.svelte";
|
|
6
|
+
export { default as Frame } from "./frame/components/frame.svelte";
|
|
7
|
+
export { default as Header } from "./header/components/header.svelte";
|
|
4
8
|
export { default as Text } from "./text/components/text.svelte";
|
package/package.json
CHANGED
|
@@ -1,65 +1,69 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sk-clib",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"
|
|
5
|
-
"dev": "vite dev",
|
|
6
|
-
"build": "vite build && npm run prepack",
|
|
7
|
-
"preview": "vite preview",
|
|
8
|
-
"prepare": "svelte-kit sync || echo ''",
|
|
9
|
-
"prepack": "svelte-kit sync && svelte-package && publint",
|
|
10
|
-
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
11
|
-
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
12
|
-
"format": "prettier --write .",
|
|
13
|
-
"lint": "prettier --check . && eslint ."
|
|
14
|
-
},
|
|
3
|
+
"version": "0.0.8",
|
|
4
|
+
"type": "module",
|
|
15
5
|
"files": [
|
|
16
6
|
"dist",
|
|
17
7
|
"!dist/**/*.test.*",
|
|
18
|
-
"!dist/**/*.spec.*"
|
|
8
|
+
"!dist/**/*.spec.*",
|
|
9
|
+
"dist/styles.css"
|
|
19
10
|
],
|
|
20
|
-
"sideEffects": [
|
|
21
|
-
"**/*.css"
|
|
22
|
-
],
|
|
23
|
-
"svelte": "./dist/index.js",
|
|
24
|
-
"types": "./dist/index.d.ts",
|
|
25
|
-
"type": "module",
|
|
26
11
|
"exports": {
|
|
27
12
|
".": {
|
|
28
13
|
"types": "./dist/index.d.ts",
|
|
29
14
|
"svelte": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./ui": {
|
|
17
|
+
"types": "./dist/ui/index.d.ts",
|
|
18
|
+
"svelte": "./dist/ui/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./style": {
|
|
21
|
+
"default": "./dist/styles.css"
|
|
30
22
|
}
|
|
31
23
|
},
|
|
24
|
+
"svelte": "./dist/index.js",
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"sideEffects": [
|
|
27
|
+
"**/*.css"
|
|
28
|
+
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "svelte-package && bunx tailwindcss -i ./src/app.css -o ./dist/styles.css",
|
|
31
|
+
"prepublishOnly": "npm run build && publint",
|
|
32
|
+
"dev": "vite dev",
|
|
33
|
+
"preview": "vite preview",
|
|
34
|
+
"check": "svelte-check --tsconfig ./tsconfig.json",
|
|
35
|
+
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
|
|
36
|
+
"format": "prettier --write .",
|
|
37
|
+
"lint": "prettier --check . && eslint ."
|
|
38
|
+
},
|
|
32
39
|
"peerDependencies": {
|
|
33
|
-
"
|
|
40
|
+
"@sveltejs/kit": "^2.0.0",
|
|
41
|
+
"svelte": "^5.0.0",
|
|
42
|
+
"tailwindcss": "^4.1.5"
|
|
34
43
|
},
|
|
35
44
|
"devDependencies": {
|
|
36
|
-
"@
|
|
37
|
-
"@eslint/js": "^9.18.0",
|
|
38
|
-
"@sveltejs/adapter-auto": "^6.0.0",
|
|
39
|
-
"@sveltejs/kit": "^2.16.0",
|
|
45
|
+
"@sveltejs/kit": "^2.0.0",
|
|
40
46
|
"@sveltejs/package": "^2.0.0",
|
|
41
47
|
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|
|
42
|
-
"@tailwindcss/vite": "^4.0.0",
|
|
43
48
|
"eslint": "^9.18.0",
|
|
44
49
|
"eslint-config-prettier": "^10.0.1",
|
|
45
50
|
"eslint-plugin-svelte": "^3.0.0",
|
|
46
|
-
"globals": "^16.0.0",
|
|
47
51
|
"prettier": "^3.4.2",
|
|
48
52
|
"prettier-plugin-svelte": "^3.3.3",
|
|
49
53
|
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
50
54
|
"publint": "^0.3.2",
|
|
51
55
|
"svelte": "^5.0.0",
|
|
52
56
|
"svelte-check": "^4.0.0",
|
|
53
|
-
"tailwindcss": "^4.0.0",
|
|
54
57
|
"typescript": "^5.0.0",
|
|
55
|
-
"typescript-eslint": "^8.20.0",
|
|
56
58
|
"vite": "^6.2.6"
|
|
57
59
|
},
|
|
58
60
|
"keywords": [
|
|
59
|
-
"svelte"
|
|
61
|
+
"svelte",
|
|
62
|
+
"component",
|
|
63
|
+
"library"
|
|
60
64
|
],
|
|
61
|
-
"license": "MIT",
|
|
62
65
|
"dependencies": {
|
|
66
|
+
"@tailwindcss/cli": "^4.1.5",
|
|
63
67
|
"tailwind-merge": "^3.2.0"
|
|
64
68
|
}
|
|
65
69
|
}
|