-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1022 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1022 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
40
41
42
43
44
{
"name": "remove-bg-cli",
"description": "Remove image backgrounds with remove.bg using the command line",
"repository": "https://github.com/remove-bg/remove-bg-cli",
"author": "Kaleido AI GmbH",
"email": "hello@kaleido.ai",
"private": true,
"version": "2.0.3",
"engines": {
"node": "16.20.2"
},
"bin": "cli.js",
"scripts": {
"test": "jest test/test.js",
"build": "pkg package.json -o dist/removebg -t host"
},
"dependencies": {
"ag-psd": "^14.3.2",
"better-queue": "^3.8.10",
"canvas": "^2.11.2",
"canvas-exif-orientation": "^0.4.0",
"cli-progress": "^3.9.1",
"command-line-args": "^5.2.0",
"command-line-usage": "^6.1.1",
"dotenv": "^16.4.7",
"filereader": "^0.10.3",
"glob": "^7.2.0",
"jszip": "^3.7.1",
"png-dpi-reader-writer": "^0.2.4",
"prompts": "^2.4.2",
"superagent": "^6.1.0"
},
"devDependencies": {
"execa": "^5.0.0",
"jest": "^27.4.2",
"pkg": "^5.8.1"
},
"pkg": {
"scripts": "cli.js",
"assets": [
"node_modules/canvas/build/Release/**"
]
}
}