inquirer-sortable-checkbox
Version:
Inquirer sortable checkbox prompt
99 lines (98 loc) • 2.1 kB
JSON
{
"name": "inquirer-sortable-checkbox",
"version": "1.0.1",
"engines": {
"node": ">=18"
},
"description": "Inquirer sortable checkbox prompt",
"main": "./dist/cjs/index.js",
"typings": "./dist/cjs/types/index.d.ts",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/th0r/inquirer-sortable-checkbox.git"
},
"keywords": [
"answer",
"answers",
"ask",
"base",
"cli",
"command",
"command-line",
"confirm",
"enquirer",
"generate",
"generator",
"hyper",
"input",
"inquire",
"inquirer",
"interface",
"iterm",
"javascript",
"menu",
"node",
"nodejs",
"prompt",
"promptly",
"prompts",
"question",
"readline",
"scaffold",
"scaffolder",
"scaffolding",
"stdin",
"stdout",
"terminal",
"tty",
"ui",
"yeoman",
"yo",
"zsh",
"list",
"sortable",
"reorderable"
],
"author": "Yuriy Grunin <grunin.ya@ya.ru>",
"license": "MIT",
"homepage": "https://github.com/th0r/inquirer-sortable-checkbox",
"dependencies": {
"@inquirer/core": "^8.0.1",
"@inquirer/figures": "^1.0.1",
"@inquirer/type": "^1.3.0",
"ansi-escapes": "^4.3.2",
"chalk": "^4.1.2"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"globby": "^14.0.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"scripts": {
"tsc": "npm run tsc:esm && npm run tsc:cjs",
"tsc:esm": "rm -rf dist/esm && tsc -p ./tsconfig.json",
"tsc:cjs": "rm -rf dist/cjs && tsc -p ./tsconfig.cjs.json && node ./tools/fix-ext.mjs",
"example": "node --no-warnings --loader ts-node/esm example.mts",
"prepare": "npm run tsc"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": {
"types": "./dist/esm/types/index.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
}
}