-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.42 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "vite-plugin-react-og-image",
"version": "0.4.0",
"description": "Vite plugin for generating Open Graph images with @vercel/og",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"format": "biome check --write .",
"lint": "biome check .",
"prepublishOnly": "pnpm build",
"build": "tsdown"
},
"keywords": [
"vite",
"plugin",
"react",
"og image",
"og:image",
"vercel",
"og"
],
"homepage": "https://github.com/sunya9/vite-plugin-react-og-image",
"repository": {
"type": "git",
"url": "https://github.com/sunya9/vite-plugin-react-og-image.git"
},
"bugs": {
"url": "https://github.com/sunya9/vite-plugin-react-og-image/issues"
},
"author": {
"name": "sunya9",
"url": "https://github.com/sunya9"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@types/node": "^25.0.2",
"@types/react": "^19.1.8",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vite": "^8.0.3"
},
"peerDependencies": {
"react": ">=18.0.0",
"vite": ">=5.0.0"
},
"dependencies": {
"@vercel/og": "^0.11.1"
},
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=20"
}
}