-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
40 lines (40 loc) · 913 Bytes
/
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
{
"name": "astro-og-image",
"version": "1.0.8",
"description": "An astro integration to generate static Open Graph images, at build time",
"type": "module",
"types": "./dist/index.d.ts",
"author": "Tomáš Kebrle <contact@tomaskebrle.cz> (https://tomaskebrle.cz)",
"homepage": "https://github.com/Kendy205/astro-og-image",
"bugs": "https://github.com/Kendy205/astro-og-image/issues",
"repository": {
"type": "git",
"url": "https://github.com/Kendy205/astro-og-image.git",
"directory": "/"
},
"license": "MIT",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc"
},
"keywords": [
"astro-component",
"open-graph",
"seo"
],
"devDependencies": {
"astro": "^1.0.0-beta.57",
"typescript": "^4.7.4"
},
"dependencies": {
"puppeteer": "^15.1.1"
},
"engines": {
"node": ">=14.0.0"
}
}