@ewanc26/og 0.1.5 → 0.1.6
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/{chunk-2I73D34T.js → chunk-CM6746HS.js} +1 -9
- package/dist/chunk-CM6746HS.js.map +1 -0
- package/dist/index.cjs +21 -119
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -11
- package/dist/index.d.ts +7 -11
- package/dist/index.js +22 -114
- package/dist/index.js.map +1 -1
- package/dist/templates/index.js +1 -1
- package/package.json +3 -2
- package/src/fonts-base64.ts +7 -0
- package/src/fonts.ts +29 -107
- package/src/index.ts +1 -1
- package/dist/chunk-2I73D34T.js.map +0 -1
- package/dist/fonts/Inter-Bold.ttf +0 -0
- package/dist/fonts/Inter-Regular.ttf +0 -0
- package/src/fonts-data.ts +0 -61
package/dist/templates/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ewanc26/og",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Dynamic OpenGraph image generator with noise backgrounds, bold typography, and Satori-based rendering. Works in SvelteKit endpoints, edge runtimes, and build scripts.",
|
|
5
5
|
"author": "Ewan Croft",
|
|
6
6
|
"license": "AGPL-3.0-only",
|
|
@@ -56,8 +56,9 @@
|
|
|
56
56
|
"typescript": "^5.9.3"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
|
+
"prebuild": "node scripts/prebuild.mjs",
|
|
59
60
|
"build": "tsup",
|
|
60
|
-
"dev": "tsup --watch",
|
|
61
|
+
"dev": "node scripts/prebuild.mjs && tsup --watch",
|
|
61
62
|
"check": "tsc --noEmit"
|
|
62
63
|
}
|
|
63
64
|
}
|