-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
73 lines (73 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "next-api-og-image",
"version": "4.3.0",
"description": "Easy way to generate open-graph images dynamically using Next.js API Routes.",
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf lib",
"build": "microbundle",
"build:watch": "microbundle watch"
},
"author": {
"name": "Igor Klepacki",
"email": "[email protected]",
"url": "https://neg4n.dev/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neg4n/next-api-og-image"
},
"keywords": [
"nextjs",
"nextjs-plugin",
"react",
"next-middleware",
"serverless",
"next-api"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/neg4n/next-api-og-image/issues"
},
"homepage": "https://github.com/neg4n/next-api-og-image#readme",
"source": "src/index.ts",
"main": "./lib/next-api-og-image.cjs",
"module": "./lib/next-api-og-image.module.js",
"unpkg": "./lib/next-api-og-image.umd.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"peerDependencies": {
"chrome-aws-lambda": ">=1.6.3",
"next": ">=9.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"prettier": {
"printWidth": 110,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@types/node": "^16.10.2",
"@types/react": "^17.0.29",
"@types/react-dom": "^17.0.9",
"@types/twemoji": "^12.1.2",
"microbundle": "^0.13.3",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"type-fest": "^2.5.1",
"typescript": "^4.4.3"
},
"dependencies": {
"deepmerge": "^4.2.2",
"is-lambda": "^1.0.1",
"puppeteer-core": "^10.4.0",
"twemoji": "^13.1.0"
}
}