sd-parsers
Version:
A library to read metadata from images created by Stable Diffusion
51 lines (50 loc) • 1.08 kB
JSON
{
"name": "sd-parsers",
"version": "1.0.1",
"description": "A library to read metadata from images created by Stable Diffusion",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"sd-parsers": "./bin/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"prepare": "npm run build",
"sync-version": "./scripts/sync-version.sh"
},
"keywords": [
"stable-diffusion",
"metadata",
"image-parsing",
"ai",
"automatic1111",
"comfyui",
"fooocus",
"invokeai",
"novelai"
],
"author": "Deepratna Awale",
"license": "MIT",
"dependencies": {
"exifr": "^7.1.0",
"png-chunks-extract": "^1.0.0",
"sharp": "^0.33.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/png-chunks-extract": "^1.0.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/deepratna-awale/sd-parsers.git"
}
}