-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 918 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 918 Bytes
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": "twitter-post-maker",
"version": "1.0.0",
"description": "Generate Twitter/OG preview images from a URL using selectable templates",
"main": "./build/main.js",
"bin": {
"tp-cli": "./build/main.js"
},
"scripts": {
"build": "tsc",
"start": "node build/server.js",
"server": "node build/server.js",
"cli": "node build/main.js",
"pretest": "tsc -p tsconfig.test.json",
"test": "node --test build-test/test/*.test.js",
"typecheck": "tsc --noEmit"
},
"keywords": [
"twitter",
"open-graph",
"og-image",
"screenshot",
"puppeteer"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.4.5",
"nodemon": "^3.0.1",
"typescript": "^5.1.6"
},
"dependencies": {
"commander": "^11.0.0",
"express": "^4.19.2",
"puppeteer": "^20.9.0",
"sharp": "^0.32.4"
}
}