-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.4 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "background-removal-js-node-cli",
"version": "1.0.1",
"description": "CLI tool for removing backgrounds and foregrounds from images using AI",
"main": "dist/index.js",
"bin": {
"background-removal-cli": "./dist/index.js",
"rmbg-cli": "./dist/index.js"
},
"scripts": {
"update-version": "node update-version.js",
"prebuild": "npm run update-version",
"build": "tsc",
"build:bun": "bun build.ts",
"start": "node dist/index.js",
"dev": "bun run index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"background-removal",
"image-processing",
"ai",
"cli",
"remove-background",
"image-editing",
"foreground-removal",
"imgly"
],
"author": "shpaw415",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shpaw415/background-removal-js-node-cli.git"
},
"bugs": {
"url": "https://github.com/shpaw415/background-removal-js-node-cli/issues"
},
"homepage": "https://github.com/shpaw415/background-removal-js-node-cli#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.0.0",
"typescript": "^5"
},
"dependencies": {
"@imgly/background-removal-node": "^1.4.5",
"commander": "^14.0.1",
"log-update": "^7.0.1",
"sharp": "^0.34.4"
}
}