-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 897 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-seo-images",
"version": "3.0.0",
"description": "Use Astro templates to generate social images for your Astro build",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "rm -f ./dist/* && tsc",
"prepare": "pnpm run build"
},
"keywords": [
"astro",
"astro-integration"
],
"files": [
"dist"
],
"author": {
"name": "David Warrington"
},
"homepage": "https://github.com/davidwarrington/astro-seo-images",
"bugs": {
"url": "https://github.com/davidwarrington/astro-seo-images/issues"
},
"license": "ISC",
"dependencies": {
"puppeteer": "^23.2.1",
"puppeteer-cluster": "^0.24.0"
},
"devDependencies": {
"@types/node": "^22.5.1",
"astro": "^4.15.1",
"eslint": "^9.9.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"astro": "^4.15.1"
}
}