@ethercorps/sveltekit-og 3.0.0-next.14 → 3.0.0-next.16

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.
@@ -9,13 +9,13 @@ export async function default_fonts() {
9
9
  const [noto_sans_regular_font, noto_sans_bold_font] = await Promise.all([noto_sans_regular_font_resp.arrayBuffer(), noto_sans_bold_font_reps.arrayBuffer()]);
10
10
  return [
11
11
  {
12
- data: new Uint8Array(noto_sans_regular_font),
12
+ data: noto_sans_regular_font,
13
13
  name: 'Inter',
14
14
  weight: 400,
15
15
  style: 'normal'
16
16
  },
17
17
  {
18
- data: new Uint8Array(noto_sans_bold_font),
18
+ data: noto_sans_bold_font,
19
19
  name: 'Inter',
20
20
  weight: 700,
21
21
  style: 'normal'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethercorps/sveltekit-og",
3
- "version": "3.0.0-next.14",
3
+ "version": "3.0.0-next.16",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",
@@ -41,26 +41,26 @@
41
41
  "prettier": "^2.8.8",
42
42
  "prettier-plugin-svelte": "^2.10.1",
43
43
  "publint": "^0.1.16",
44
+ "rollup-plugin-visualizer": "^5.12.0",
44
45
  "svelte": "^4.2.18",
45
46
  "svelte-check": "^3.8.1",
46
47
  "tslib": "^2.6.3",
47
48
  "typescript": "^5.5.2",
48
49
  "vite": "^5.3.1",
49
50
  "vite-plugin-wasm": "^3.3.0",
50
- "vitest": "^1.6.0"
51
+ "vitest": "^1.6.0",
52
+ "@ethercorps/svelte-h2j": "^4.0.0"
51
53
  },
54
+ "main": "./dist/index.js",
52
55
  "svelte": "./dist/index.js",
53
56
  "types": "./dist/index.d.ts",
54
57
  "type": "module",
55
58
  "dependencies": {
56
- "@ethercorps/svelte-h2j": "^4.0.0",
59
+ "@resvg/resvg-wasm": "^2.6.2",
57
60
  "satori": "^0.10.13",
58
- "std-env": "^3.7.0",
59
- "unwasm": "^0.3.9",
60
- "@resvg/resvg-wasm": "^2.6.2"
61
+ "std-env": "^3.7.0"
61
62
  },
62
63
  "peerDependencies": {
63
- "svelte": "^4.0.0",
64
64
  "unwasm": "^0.3.9",
65
65
  "vite-plugin-wasm": "^3.3.0"
66
66
  }