-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.23 KB
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
{
"name": "tweet-shots",
"version": "1.0.0",
"description": "Generate beautiful tweet screenshots - CLI and API",
"type": "module",
"bin": {
"tweet-shots": "./tweet-shots.mjs"
},
"scripts": {
"start": "node src/server.mjs",
"dev": "node --watch src/server.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:render": "vitest run tests/integration/real-render.test.mjs",
"deploy": "gcloud builds submit --config cloudbuild.yaml --project tweet-shots-api ."
},
"dependencies": {
"@google-cloud/firestore": "^8.3.0",
"@google-cloud/storage": "^7.19.0",
"@resvg/resvg-js": "^2.6.0",
"busboy": "1.6.0",
"cors": "^2.8.5",
"express": "5.2.1",
"express-rate-limit": "8.2.1",
"firebase-admin": "13.7.0",
"helmet": "8.1.0",
"pdfkit": "0.17.2",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"satori": "0.24.1",
"satori-html": "^0.3.2",
"sharp": "0.34.5",
"stripe": "^20.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"eslint": "9.39.3",
"eslint-plugin-security": "4.0.0",
"vitest": "^4.0.18"
}
}