-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.38 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
52
53
54
55
56
57
58
59
60
{
"name": "rainbow-terminal",
"version": "0.0.5",
"description": "🌈 Beautiful rainbow terminal",
"main": "src/rainbow.js",
"types": "types/rainbow.d.ts",
"scripts": {
"test": "vitest",
"build:docs": "tsc src/rainbow.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"cli": "node src/cli.js \"Hello world!\" red green blue && node src/cli.js \"Hello world!\" red green blue bg",
"lint": "eslint src && prettier --check src",
"lint:fix": "eslint --fix src && prettier --check --write src"
},
"bin": {
"rainbow": "src/cli.js"
},
"files": [
"src",
"types"
],
"author": "Lete114",
"repository": {
"type": "git",
"url": "https://github.com/CreateWheel/rainbow-terminal.git"
},
"bugs": {
"url": "https://github.com/CreateWheel/rainbow-terminal/issues"
},
"homepage": "https://github.com/CreateWheel/rainbow-terminal#readme",
"keywords": [
"cli",
"color",
"colors",
"colour",
"rainbow",
"command-line",
"console",
"formatting",
"gradient",
"gradients",
"log",
"logging",
"shell",
"string",
"style",
"styles",
"terminal"
],
"license": "MIT",
"devDependencies": {
"eslint": "^8.35.0",
"prettier": "^2.8.4",
"typescript": "^5.0.2",
"vitest": "^0.29.2"
},
"dependencies": {
"chalk": "^4.1.2",
"tinygradient": "^1.1.5"
}
}