-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 902 Bytes
/
package.json
File metadata and controls
52 lines (52 loc) · 902 Bytes
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
{
"name": "terminal-image-cli",
"version": "4.0.0",
"description": "Display images in the terminal",
"license": "MIT",
"repository": "sindresorhus/terminal-image-cli",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"bin": {
"image": "./cli.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"test": "xo && FORCE_COLOR=1 ava"
},
"files": [
"cli.js"
],
"keywords": [
"cli-app",
"cli",
"image",
"terminal",
"ansi",
"escape",
"png",
"jpg",
"jpeg",
"gif",
"animated",
"animation"
],
"dependencies": {
"file-type": "^21.0.0",
"get-stdin": "^9.0.0",
"meow": "^13.2.0",
"terminal-image": "^4.0.0"
},
"devDependencies": {
"ava": "^6.4.1",
"execa": "^9.6.0",
"has-ansi": "^6.0.2",
"xo": "^1.2.2"
}
}