{
  "name": "inquirer-select-pro",
  "version": "1.0.0-alpha.9",
  "description": "An inquirer select that supports multiple selections and filtering.",
  "keywords": [
    "inquirer",
    "prompts",
    "cli",
    "select",
    "multiple",
    "filter",
    "autocomplete"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/jeffwcx/inquirer-select-pro"
  },
  "license": "MIT",
  "author": "jeffwcx <jeffwcx@icloud.com>",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "default": "./dist/index.js"
    }
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "directories": {
    "example": "examples",
    "test": "tests"
  },
  "files": [
    "dist"
  ],
  "lint-staged": {
    "**/*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,json}": "pnpm format",
    "**/*.md": "prettier --write --ignore-unknown"
  },
  "prettier": "@jeffwcx/prettier-config",
  "dependencies": {
    "@inquirer/core": "^8.1.0",
    "@inquirer/figures": "^1.0.1",
    "@inquirer/type": "^1.3.1",
    "ansi-escapes": "^7.0.0",
    "chalk": "^5.3.0"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.5.0",
    "@changesets/cli": "^2.27.1",
    "@inquirer/testing": "^2.1.18",
    "@jeffwcx/eslint-config": "^0.3.0",
    "@jeffwcx/prettier-config": "^0.1.2",
    "@tsconfig/node-lts": "^20.1.3",
    "@types/lodash-es": "^4.17.12",
    "@types/node": "^20.12.10",
    "@vitest/coverage-v8": "1.6.0",
    "cli-spinners": "^3.0.0",
    "eslint": "^9.2.0",
    "flexsearch": "^0.7.43",
    "husky": "^9.0.11",
    "lint-staged": "^15.2.2",
    "lodash-es": "^4.17.21",
    "prettier": "^3.2.5",
    "tsup": "^8.0.2",
    "tsx": "^4.9.3",
    "typescript": "^5.4.5",
    "vitest": "1.6.0"
  },
  "packageManager": "pnpm@8.15.4",
  "engines": {
    "node": ">=18.0.0",
    "pnpm": ">=8.15.4"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsx ./examples/cli.ts",
    "format": "eslint . --cache --fix",
    "lint": "eslint . --report-unused-disable-directives --max-warnings 0 --cache",
    "release": "changeset publish",
    "test": "vitest run",
    "test:cov": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "version-pkg": "changeset version"
  }
}