first commit
This commit is contained in:
21
node_modules/tinyrainbow/LICENCE
generated
vendored
Normal file
21
node_modules/tinyrainbow/LICENCE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2022 Tinylibs
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
28
node_modules/tinyrainbow/README.md
generated
vendored
Normal file
28
node_modules/tinyrainbow/README.md
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
# tinyrainbow
|
||||
|
||||
Output your colorful messages in the terminal or browser console that support ANSI colors (Chrome engines).
|
||||
|
||||
A small (`~ 6 kB` unpacked) fork of [picocolors](https://www.npmjs.com/package/picocolors) with support for `exports` field.
|
||||
|
||||
Supports only ESM.
|
||||
|
||||
## Installing
|
||||
|
||||
```bash
|
||||
# with npm
|
||||
$ npm install -D tinyrainbow
|
||||
|
||||
# with pnpm
|
||||
$ pnpm add -D tinyrainbow
|
||||
|
||||
# with yarn
|
||||
$ yarn add -D tinyrainbow
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
import c from 'tinyrainbow'
|
||||
|
||||
console.log(c.red(c.bold('Hello World!')))
|
||||
```
|
||||
34
node_modules/tinyrainbow/package.json
generated
vendored
Normal file
34
node_modules/tinyrainbow/package.json
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "tinyrainbow",
|
||||
"version": "3.1.0",
|
||||
"packageManager": "pnpm@9.15.1",
|
||||
"description": "A small library to print colourful messages.",
|
||||
"type": "module",
|
||||
"main": "./dist/index.js",
|
||||
"module": "./dist/index.js",
|
||||
"browser": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"default": "./dist/index.js"
|
||||
},
|
||||
"files": [
|
||||
"dist/**"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/tinylibs/tinyrainbow.git"
|
||||
},
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/tinylibs/tinyrainbow/issues"
|
||||
},
|
||||
"homepage": "https://github.com/tinylibs/tinyrainbow#readme",
|
||||
"keywords": [
|
||||
"colors",
|
||||
"tty"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=14.0.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user