-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 KB
/
package.json
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
{
"name": "gatsby-plugin-satorare",
"version": "1.0.19",
"description": "Gatsby plugin that can dynamically generate OG images using JSX syntax for site and markdowns.",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc && mv ./dist/* . && rm -rf ./dist",
"check": "biome check ./src",
"check:fix": "biome check --write --unsafe ./src",
"check:ci": "biome ci ./src",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okaryo/gatsby-plugin-satorare.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"satori",
"ogp",
"open graph image",
"open graph",
"og image",
"og:image",
"social",
"card",
"image"
],
"author": "okaryo",
"license": "MIT",
"bugs": {
"url": "https://github.com/okaryo/gatsby-plugin-satorare/issues"
},
"homepage": "https://github.com/okaryo/gatsby-plugin-satorare#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"typescript": "5.7.3"
},
"dependencies": {
"satori": "^0.12.1",
"sharp": "^0.33.5"
},
"peerDependencies": {
"gatsby": "^5.0.0",
"gatsby-source-filesystem": "^5.0.0",
"react": "^18.0.0 || ^0.0.0"
}
}