-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1014 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": "embedherald",
"version": "1.0.0",
"description": "Generates OpenGraph embeds for avherald.com articles",
"main": "src/worker.ts",
"scripts": {
"start-local": "npx ts-node-dev src/local.ts",
"deploy": "npx wrangler deploy src/worker.ts",
"docker:build": "docker build . -t nufflee/embedherald",
"docker:run": "docker run -p 6969:6969 nufflee/embedherald"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nufflee/EmbedHerald.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nufflee/EmbedHerald/issues"
},
"homepage": "https://github.com/Nufflee/EmbedHerald#readme",
"dependencies": {
"node-html-parser": "^6.1.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231010.0",
"@types/express": "^4.17.19",
"express": "^4.18.2",
"localtunnel": "^2.0.2",
"ts-node-dev": "^2.0.0",
"http-proxy-cli": "^2.1.0",
"typescript": "^4.4.4",
"wrangler": "^3.13.1"
}
}