-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 857 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
{
"name": "next-static-og-images",
"version": "0.4.1",
"description": "Generate static open graph images for Next.js at build time",
"main": "dist/index.ts",
"bin": {
"next-static-og-images": "./bin/cli"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/adamhwang/next-static-og-images"
},
"keywords": [
"nextjs",
"open-graph",
"og",
"images"
],
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.2",
"dotenv": "^16.4.5",
"puppeteer": "^21.11.0",
"tree-kill": "^1.2.2",
"typescript": "^5.6.2",
"xml2js": "^0.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.42",
"@types/xml2js": "^0.4.14",
"@types/yargs": "^17.0.33"
}
}