terminal-image-cli 3.0.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +8 -8
  2. package/readme.md +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "terminal-image-cli",
3
- "version": "3.0.0",
3
+ "version": "4.0.0",
4
4
  "description": "Display images in the terminal",
5
5
  "license": "MIT",
6
6
  "repository": "sindresorhus/terminal-image-cli",
@@ -15,7 +15,7 @@
15
15
  "image": "./cli.js"
16
16
  },
17
17
  "engines": {
18
- "node": ">=18"
18
+ "node": ">=20"
19
19
  },
20
20
  "scripts": {
21
21
  "test": "xo && FORCE_COLOR=1 ava"
@@ -38,15 +38,15 @@
38
38
  "animation"
39
39
  ],
40
40
  "dependencies": {
41
- "file-type": "^19.3.0",
41
+ "file-type": "^21.0.0",
42
42
  "get-stdin": "^9.0.0",
43
43
  "meow": "^13.2.0",
44
- "terminal-image": "^3.0.0"
44
+ "terminal-image": "^4.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "ava": "^6.1.3",
48
- "execa": "^9.3.0",
49
- "has-ansi": "^6.0.0",
50
- "xo": "^0.59.2"
47
+ "ava": "^6.4.1",
48
+ "execa": "^9.6.0",
49
+ "has-ansi": "^6.0.2",
50
+ "xo": "^1.2.2"
51
51
  }
52
52
  }
package/readme.md CHANGED
@@ -6,7 +6,7 @@ Works in any terminal that supports colors. Supports animated GIFs.
6
6
 
7
7
  <img src="screenshot.png" width="1082">
8
8
 
9
- *In iTerm, the image will be [displayed in full resolution](screenshot-iterm.jpg), since iTerm has [special image support](https://www.iterm2.com/documentation-images.html).*
9
+ *In iTerm, Kitty, WezTerm, and other terminals with graphics support, the image will be [displayed in full resolution](screenshot-iterm.jpg). In other terminals, it will be rendered using ANSI block characters.*
10
10
 
11
11
  ## Install
12
12