{
  "name": "ascii-silhouettify",
  "version": "1.0.2",
  "description": "A command-line app that converts images into ASCII silhouettes, a style of ASCII art distinguished by uniformly filled geometric shapes rather than lines or textures.",
  "type": "module",
  "module": "./dist/main.bundle.js",
  "private": false,
  "scripts": {
    "clean": "rimraf ./dist ./bin",
    "build": "npm run clean && rollup -c",
    "run": "node ./dist/main.bundle.js",
    "pack": "npm pack && shx mkdir -p bin && shx mv *.tgz bin/ascii-silhouettify.tgz",
    "all": "npm run build && npm run pack",
    "install-global": "npm install -g ./bin/ascii-silhouettify.tgz",
    "uninstall-global": "npm uninstall -g ascii-silhouettify",
    "run-global": "ascii-silhouettify"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.8",
    "@rollup/plugin-node-resolve": "^15.3.1",
    "@rollup/plugin-typescript": "^11.1.6",
    "@types/chroma-js": "^2.4.5",
    "@types/glob": "^8.1.0",
    "@types/node": "^20.17.14",
    "@types/sharp": "^0.32.0",
    "rimraf": "^5.0.10",
    "rollup": "^4.31.0",
    "rollup-plugin-copy": "^3.5.0",
    "shx": "^0.3.4",
    "tslib": "^2.8.1",
    "tsx": "^4.19.2",
    "typescript": "^5.7.3"
  },
  "files": [
    "dist"
  ],
  "bin": {
    "ascii-silhouettify": "./dist/main.bundle.js"
  },
  "dependencies": {
    "chroma-js": "^2.6.0",
    "glob": "^10.4.5",
    "sharp": "^0.33.5"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/meatfighter/ascii-silhouettify"
  },
  "keywords": [
    "ascii art",
    "ansi art",
    "text art",
    "image2ascii",
    "image2ansi",
    "image2text"
  ],
  "homepage": "https://meatfighter.com/ascii-silhouettify/",
  "license": "GPL-3.0"
}
