@miozu/jera 0.4.2 → 0.4.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miozu/jera",
3
- "version": "0.4.2",
3
+ "version": "0.4.4",
4
4
  "description": "Minimal, reactive component library for Svelte 5",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -26,16 +26,12 @@
26
26
  "CLAUDE.md"
27
27
  ],
28
28
  "peerDependencies": {
29
- "svelte": "^5.0.0",
30
29
  "shiki": "^3.0.0",
31
- "@lucide/svelte": "^0.500.0"
30
+ "svelte": "^5.0.0"
32
31
  },
33
32
  "peerDependenciesMeta": {
34
33
  "shiki": {
35
34
  "optional": true
36
- },
37
- "@lucide/svelte": {
38
- "optional": true
39
35
  }
40
36
  },
41
37
  "devDependencies": {
@@ -60,5 +56,8 @@
60
56
  "homepage": "https://miozu.com",
61
57
  "bugs": {
62
58
  "url": "https://github.com/miozu-com/jera/issues"
59
+ },
60
+ "dependencies": {
61
+ "@miozu/jera": "0.4.3"
63
62
  }
64
63
  }
@@ -15,7 +15,6 @@
15
15
  -->
16
16
  <script>
17
17
  import {getHighlighter} from '../../utils/highlighter.js';
18
- import {Copy, Check} from '@lucide/svelte';
19
18
 
20
19
  let {
21
20
  /** The code to display */
@@ -82,9 +81,11 @@
82
81
  aria-label={copied ? 'Copied!' : 'Copy code'}
83
82
  >
84
83
  {#if copied}
85
- <Check size={16} />
84
+ <!-- Check icon (inline SVG - no external dependency) -->
85
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>
86
86
  {:else}
87
- <Copy size={16} />
87
+ <!-- Copy icon (inline SVG - no external dependency) -->
88
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect width="14" height="14" x="8" y="8" rx="2" ry="2"/><path d="M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"/></svg>
88
89
  {/if}
89
90
  </button>
90
91
 
@@ -12,8 +12,6 @@
12
12
  ```
13
13
  -->
14
14
  <script>
15
- import {Link2} from '@lucide/svelte';
16
-
17
15
  let {
18
16
  /** Unique ID for anchor links */
19
17
  id = '',
@@ -41,7 +39,8 @@
41
39
  {title}
42
40
  {#if showAnchor && id}
43
41
  <a href="#{id}" class="anchor-link" aria-label="Link to {title}">
44
- <Link2 size={16} />
42
+ <!-- Link icon (inline SVG - no external dependency) -->
43
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 17H7A5 5 0 0 1 7 7h2"/><path d="M15 7h2a5 5 0 1 1 0 10h-2"/><line x1="8" x2="16" y1="12" y2="12"/></svg>
45
44
  </a>
46
45
  {/if}
47
46
  </svelte:element>