This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

21
node_modules/listr2/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) Cenk Kilic <cenk@kilic.dev> (https://srcs.kilic.dev), Sam Verschueren <sam.verschueren@gmail.com> (github.com/SamVerschueren)
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.

17
node_modules/listr2/README.md generated vendored Normal file
View File

@@ -0,0 +1,17 @@
# listr2
[![Pipeline](https://gitlab.kilic.dev/libraries/listr2/badges/master/pipeline.svg?style=flat-square&ignore_skipped=true)](https://gitlab.kilic.dev/libraries/listr2/-/commits/master) [![Version](https://img.shields.io/npm/v/listr2.svg?style=flat-square&logo=npm)](https://www.npmjs.com/package/listr2?activeTab=versions) [![Downloads](https://img.shields.io/npm/dm/listr2.svg?style=flat-square&logo=npm)](https://www.npmjs.com/package/listr2) [![NPM Unpacked Size](https://img.shields.io/npm/unpacked-size/listr2)](https://www.npmjs.com/package/listr2) [![Dependencies](https://img.shields.io/librariesio/release/npm/listr2?style=flat-square&logo=npm)](https://www.npmjs.com/package/listr2?activeTab=dependencies) [![codecov](https://codecov.io/gh/listr2/listr2/branch/master/graph/badge.svg?style=flat-square)](https://codecov.io/gh/listr2/listr2)
[![github sponsors](https://img.shields.io/github/sponsors/cenk1cenk2?style=flat-square&logo=github)](https://github.com/sponsors/cenk1cenk2) [![opencollective](https://img.shields.io/opencollective/sponsors/listr2?label=open%20collective&logo=opencollective)](https://opencollective.com/listr2)
**Create beautiful CLI interfaces via easy and logical to-implement task lists that feel alive and interactive.**
---
## Documentation
**[Read the documentation...](https://listr2.kilic.dev)**
## Demo
![Demo](https://media.githubusercontent.com/media/listr2/listr2/master/examples/renderer-default.gif)

2186
node_modules/listr2/dist/index.cjs generated vendored Normal file

File diff suppressed because it is too large Load Diff

1528
node_modules/listr2/dist/index.d.cts generated vendored Normal file

File diff suppressed because it is too large Load Diff

1528
node_modules/listr2/dist/index.d.ts generated vendored Normal file

File diff suppressed because it is too large Load Diff

2112
node_modules/listr2/dist/index.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

85
node_modules/listr2/package.json generated vendored Normal file
View File

@@ -0,0 +1,85 @@
{
"name": "listr2",
"version": "9.0.1",
"description": "Terminal task list reborn! Create beautiful CLI interfaces via easy and logical to implement task lists that feel alive and interactive.",
"license": "MIT",
"repository": "https://github.com/listr2/listr2",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"author": {
"name": "Cenk Kilic",
"email": "cenk@kilic.dev",
"url": "https://cenk.kilic.dev"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsdown",
"dev:start": "tsdown --watch",
"format": "prettier --log-level warn --write src/ tests/ && pnpm run lint --fix",
"lint": "eslint --flag v10_config_lookup_from_file src/ tests/",
"test": "NO_COLOR=1 TS_NODE_PROJECT=tests/tsconfig.json NODE_OPTIONS='--no-warnings --experimental-specifier-resolution=node --experimental-vm-modules' jest --config tests/jest.config.ts",
"test:cov": "pnpm run test --coverage",
"test:dev": "NODE_OPTIONS='--no-warnings --experimental-specifier-resolution=node --experimental-vm-modules --inspect=0.0.0.0:9229' pnpm run test --verbose --watchAll"
},
"lint-staged": {
"{src,tests}/**/*.{ts,js,tsx,jsx,spec.ts}": [
"prettier --log-level warn --write",
"eslint --flag v10_config_lookup_from_file --fix"
],
"*.{json,md}": [
"prettier --log-level warn --write"
]
},
"keywords": [
"listr",
"listr2",
"cli",
"task",
"list",
"tasklist",
"terminal",
"term",
"console",
"ascii",
"unicode",
"loading",
"indicator",
"progress",
"busy",
"wait",
"idle"
],
"dependencies": {
"cli-truncate": "^4.0.0",
"colorette": "^2.0.20",
"eventemitter3": "^5.0.1",
"log-update": "^6.1.0",
"rfdc": "^1.4.1",
"wrap-ansi": "^9.0.0"
},
"devDependencies": {
"@types/zen-observable": "^0.8.7",
"rxjs": "^7.8.2",
"zen-observable": "^0.10.0"
}
}