UNPKG

ascii-silhouettify

Version:

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.

62 lines (61 loc) 1.82 kB
{ "name": "ascii-silhouettify", "version": "2.0.0", "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", "prepublishOnly": "npm run build" }, "devDependencies": { "@rollup/plugin-commonjs": "^29.0.3", "@rollup/plugin-node-resolve": "^16.0.3", "@rollup/plugin-typescript": "^12.3.0", "@types/chroma-js": "^2.4.5", "@types/node": "^20.17.14", "rimraf": "^6.1.3", "rollup": "^4.62.2", "rollup-plugin-copy": "^3.5.0", "shx": "^0.4.0", "tslib": "^2.8.1", "tsx": "^4.23.1", "typescript": "^5.7.3" }, "files": [ "dist" ], "bin": { "ascii-silhouettify": "dist/main.bundle.js" }, "dependencies": { "chroma-js": "^2.6.0", "glob": "^13.0.6", "sharp": "^0.35.3" }, "repository": { "type": "git", "url": "git+https://github.com/meatfighter/ascii-silhouettify.git" }, "keywords": [ "ascii art", "ansi art", "text art", "image2ascii", "image2ansi", "image2text" ], "homepage": "https://meatfighter.com/ascii-silhouettify/", "license": "GPL-3.0", "engines": { "node": ">=20.9.0" } }