-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 791 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 791 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
{
"name": "x-behind-image",
"version": "1.0.0",
"description": "This document provides information on how to run the API endpoints for the Text Behind Image project. The API is built using Express.js and runs separately from the Next.js application to handle image processing tasks.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"download-fonts": "node fontLoader.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@imgly/background-removal-node": "^1.0.0",
"@replit/object-storage": "^1.0.0",
"body-parser": "^1.19.0",
"canvas": "^2.11.2",
"express": "^4.17.1",
"imagekit": "^5.2.0",
"multer": "^1.4.2",
"node-fetch": "^3.3.2"
}
}