@gleich/ui 0.0.9 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +9 -1
  2. package/package.json +2 -4
package/README.md CHANGED
@@ -1,3 +1,11 @@
1
- # ui
1
+ # [ui](https://ui.mattglei.ch)
2
2
 
3
3
  shared ui components used across my personal projects
4
+
5
+ ## Install
6
+
7
+ Simply install with:
8
+
9
+ ```bash
10
+ npm install @gleich/ui
11
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gleich/ui",
3
- "version": "0.0.9",
3
+ "version": "1.0.0",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "dev": "vite dev --open",
@@ -21,13 +21,11 @@
21
21
  "sideEffects": [
22
22
  "**/*.css"
23
23
  ],
24
- "svelte": "./dist/index.js",
25
- "types": "./dist/index.d.ts",
26
24
  "type": "module",
27
25
  "exports": {
28
26
  ".": {
29
27
  "types": "./dist/index.d.ts",
30
- "default": "./dist/index.js"
28
+ "svelte": "./dist/index.js"
31
29
  },
32
30
  "./styles.css": "./dist/styles.css"
33
31
  },