-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.06 KB
/
package.json
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
{
"name": "console-fun",
"version": "2.2.0",
"description": "Some stuff in the console: utils, printing, games and other fun",
"main": "dist/cli.mjs",
"scripts": {
"test": "prettier . --check",
"build": "unbuild",
"go": "node dist/cli.mjs",
"prettify": "prettier . --write"
},
"keywords": [
"fun",
"game",
"productivity",
"console",
"terminal",
"tool",
"reader",
"print",
"typer",
"watcher",
"figure",
"figures"
],
"author": "Rushan Alyautdinov",
"license": "MIT",
"bin": {
"console-fun": "dist/cli.mjs",
"confun": "dist/cli.mjs",
"cofun": "dist/cli.mjs",
"cofu": "dist/cli.mjs"
},
"dependencies": {
"ansi-escapes": "^7.0.0",
"chalk": "^5.3.0",
"coloreme": "^1.0.5",
"delay": "^6.0.0",
"fast-shuffle": "^6.1.0",
"figures": "^6.1.0",
"gradient-string": "^2.0.2",
"log-update": "^6.0.0",
"meow": "^13.2.0",
"rambda": "^9.2.0",
"string-width": "^7.1.0"
},
"devDependencies": {
"prettier": "^3.3.2",
"unbuild": "^2.0.0"
}
}