js-image-bg-remover
Version:
Fast, portable background removal using WASM and U-2-Net
59 lines • 1.39 kB
JSON
{
"name": "js-image-bg-remover",
"version": "1.1.3",
"description": "Fast, portable background removal using WASM and U-2-Net",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"bin": {
"cleancut": "./cli.js"
},
"scripts": {
"test": "node test/test.js",
"bench": "node benchmarks/benchmark.js",
"preinstall": "node scripts/check-system.js && node scripts/download-model.js",
"postinstall": "node scripts/check-model.js"
},
"keywords": [
"background-removal",
"image-processing",
"wasm",
"u2net",
"transparent",
"png",
"typescript",
"nodejs"
],
"author": {
"name": "Sagar Regmi",
"email": "sagarregmi2056@gmail.com",
"url": "https://github.com/sagarregmi2056"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sagarregmi2056/js-image-bg-remover.git"
},
"bugs": {
"url": "https://github.com/sagarregmi2056/js-image-bg-remover/issues"
},
"homepage": "https://github.com/sagarregmi2056/js-image-bg-remover#readme",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.16",
"node-fetch": "^3.3.2",
"onnxruntime-web": "^1.22.0",
"sharp": "^0.34.3"
},
"devDependencies": {
"@types/node": "^18.0.0",
"commander": "^14.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"linux",
"darwin",
"win32"
]
}