forked from tomaskebrle/astro-og-image
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.33 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
51
52
53
54
{
"name": "@cyberkoalastudios/og-image-generator",
"version": "1.2.9",
"type": "module",
"description": "Astro integration to generate Social Images from Astro Content Collections with custom blurry background that can be loaded via frontmatter.",
"types": "./dist/index.d.ts",
"author": "cyberkoala <contact@cyberkoalastudios.com> (https://cyberkoalastudios.com)",
"homepage": "https://github.com/CyberKoalaStudios/og-image-generator#readme",
"bugs": {
"url": "https://github.com/CyberKoalaStudios/og-image-generator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CyberKoalaStudios/og-image-generator.git",
"directory": "/"
},
"license": "MIT",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"publish": "publish --access public",
"prepublish": "npm run build"
},
"keywords": [
"astro",
"astro-component",
"open-graph",
"seo",
"ldjson",
"withastro",
"images"
],
"devDependencies": {
"astro": "^2.4.3",
"typescript": "^4.8.4"
},
"dependencies": {
"axios": "^1.4.0",
"canvaskit-wasm": "^0.38.1",
"entities": "^4.5.0",
"glob": "^10.2.6",
"puppeteer": "^20.5.0",
"sharp": "^0.32.1"
},
"engines": {
"node": ">=16.0.0"
},
"main": "index.js"
}