@vercel/og 0.0.24 → 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 (1) hide show
  1. package/package.json +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/og",
3
- "version": "0.0.24",
3
+ "version": "1.0.0",
4
4
  "description": "Generate Open Graph Images dynamically from HTML/CSS without a browser",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -9,6 +9,10 @@
9
9
  "dist/**/*",
10
10
  "vendor/**/*"
11
11
  ],
12
+ "scripts": {
13
+ "build": "tsup src/index.ts --format esm && pnpm types",
14
+ "types": "tsc --project tsconfig.json"
15
+ },
12
16
  "keywords": [
13
17
  "open graph image",
14
18
  "open graph",
@@ -33,9 +37,5 @@
33
37
  "packageManager": "pnpm@7.12.2",
34
38
  "engines": {
35
39
  "node": ">=16"
36
- },
37
- "scripts": {
38
- "build": "tsup src/index.ts --format esm && pnpm types",
39
- "types": "tsc --project tsconfig.json"
40
40
  }
41
- }
41
+ }