Kargi-Sitesi/node_modules/@listr2/prompt-adapter-inquirer/package.json

83 lines
2.1 KiB
JSON

{
"name": "@listr2/prompt-adapter-inquirer",
"version": "2.0.15",
"description": "Listr2 prompt adapter for inquirer.",
"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": ">=18.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": {
"@inquirer/type": "^1.5.1"
},
"devDependencies": {
"@inquirer/input": "^2.1.9",
"@inquirer/prompts": "^5.0.5",
"listr2": "8.2.4"
},
"peerDependencies": {
"@inquirer/prompts": ">= 3 < 6"
}
}