-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.05 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.05 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
60
61
62
63
64
65
{
"name": "chalk-cli",
"version": "6.0.0",
"description": "Terminal string styling done right",
"license": "MIT",
"repository": "github:chalk/chalk-cli",
"funding": "https://github.com/chalk/chalk-cli?sponsor=1",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"bin": {
"chalk": "./cli.js"
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"test": "xo && FORCE_COLOR=1 ava"
},
"files": [
"cli.js"
],
"keywords": [
"cli-app",
"cli",
"color",
"colour",
"colors",
"terminal",
"console",
"string",
"str",
"ansi",
"style",
"styles",
"tty",
"formatting",
"rgb",
"256",
"shell",
"xterm",
"log",
"logging",
"command-line",
"text",
"template"
],
"dependencies": {
"ansi-styles": "^6.2.1",
"chalk": "^5.4.1",
"chalk-template": "^1.1.0",
"dot-prop": "^9.0.0",
"get-stdin": "^9.0.0",
"meow": "^13.2.0"
},
"devDependencies": {
"ava": "^3.15.0",
"execa": "^9.5.2",
"xo": "^0.60.0"
}
}