12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- {
- "name": "listr2",
- "version": "7.0.2",
- "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": ">=16.0.0"
- },
- "scripts": {
- "build": "tsup-node",
- "dev:start": "tsup-node --watch",
- "format": "prettier --log-level warn --write src/ tests/ && pnpm run lint --fix",
- "lint": "eslint --ext .ts,.js,.tsx,.jsx 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 --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": "^3.1.0",
- "colorette": "^2.0.20",
- "eventemitter3": "^5.0.1",
- "log-update": "^5.0.1",
- "rfdc": "^1.3.0",
- "wrap-ansi": "^8.1.0"
- },
- "devDependencies": {
- "@inquirer/input": "^1.2.13",
- "@inquirer/prompts": "^3.2.0",
- "@inquirer/type": "^1.1.5",
- "@types/wrap-ansi": "^8.0.1",
- "eslint": "^8.51.0",
- "rxjs": "^7.8.1"
- }
- }
|