bref-ui 0.0.5 → 0.0.7
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 +2 -0
- package/dist/base/index.d.ts +2 -1
- package/dist/base/index.js +2 -1
- package/dist/index.js +0 -2
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Bref: a truly Svelte-esque UI Component Library
|
|
2
2
|
|
|
3
|
+
**[Live Demo](https://feuersteiner.github.io/bref/)**
|
|
4
|
+
|
|
3
5
|
Bref is a Svelte UI component library designed to be minimal, flexible, and easy to use.
|
|
4
6
|
Think of it as, what if `Shadcn/ui` was built specifically for Svelte, used only CSS styling and no Tailwind CSS, fully embracing Svelte's unique capabilities and idioms.
|
|
5
7
|
|
package/dist/base/index.d.ts
CHANGED
package/dist/base/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bref-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "A truly Svelte-esque UI component library - minimal, flexible, pure CSS, no Tailwind",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "feuerstein",
|
|
@@ -8,13 +8,14 @@
|
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/feuersteiner/bref.git"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://github.
|
|
11
|
+
"homepage": "https://feuersteiner.github.io/bref/",
|
|
12
12
|
"bugs": {
|
|
13
13
|
"url": "https://github.com/feuersteiner/bref/issues"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"dev": "vite dev",
|
|
17
17
|
"build": "vite build && npm run prepack",
|
|
18
|
+
"demo-site-build": "vite build",
|
|
18
19
|
"preview": "vite preview",
|
|
19
20
|
"prepare": "svelte-kit sync || echo ''",
|
|
20
21
|
"prepack": "svelte-kit sync && svelte-package && publint",
|
|
@@ -46,9 +47,10 @@
|
|
|
46
47
|
"devDependencies": {
|
|
47
48
|
"@eslint/compat": "^1.4.0",
|
|
48
49
|
"@eslint/js": "^9.39.1",
|
|
49
|
-
"@fontsource/spectral": "^5.2.8",
|
|
50
50
|
"@fontsource/meow-script": "^5.2.8",
|
|
51
|
+
"@fontsource/spectral": "^5.2.8",
|
|
51
52
|
"@sveltejs/adapter-auto": "^7.0.0",
|
|
53
|
+
"@sveltejs/adapter-static": "^3.0.10",
|
|
52
54
|
"@sveltejs/kit": "^2.49.1",
|
|
53
55
|
"@sveltejs/package": "^2.5.7",
|
|
54
56
|
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|