-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.75 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.75 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
59
{
"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"
}