-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 910 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
{
"name": "opengraph",
"version": "1.0.0",
"description": "Generate an open graph image for twitter/facebook/etc",
"scripts": {
"dev": "cross-env NODE_ENV=development tsc-watch --noClear -p api/tsconfig.json --onSuccess \"node ./api/dist/index.js\"",
"build": "tsc -p api/tsconfig.json",
"start": "node api/dist/index.js"
},
"keywords": [
"opengraph"
],
"author": "Kidow",
"license": "MIT",
"repository": "github:kidow/opengraph",
"dependencies": {
"@supabase/supabase-js": "^1.35.2",
"chrome-aws-lambda": "10.1.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"puppeteer-core": "10.4.0",
"url-metadata": "^2.5.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "17.0.25",
"cross-env": "^7.0.3",
"puppeteer": "13.6.0",
"typescript": "4.6.3"
},
"private": true,
"engines": {
"node": "14.x"
}
}