{
  "name": "@yeoman/adapter",
  "version": "5.0.0",
  "private": false,
  "description": "Input Output adapter for yeoman's generator/environment stack",
  "keywords": [
    "yeoman",
    "api"
  ],
  "homepage": "http://yeoman.io",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yeoman/yeoman-api.git"
  },
  "license": "MIT",
  "author": "The Yeoman Team",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./testing": {
      "types": "./dist/testing/index.d.ts",
      "import": "./dist/testing/index.js"
    },
    "./types": {
      "types": "./types/index.d.ts"
    },
    "./inquirer-types": {
      "types": "./dist/inquirer.d.ts"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "types"
  ],
  "scripts": {
    "prebuild": "npm run clean",
    "build": "tsc",
    "clean": "rimraf dist",
    "clean-all": "npm run clean && rimraf node_modules",
    "precommit": "lint-staged",
    "pretest": "tsc -p tsconfig.test.json",
    "test": "vitest run --coverage"
  },
  "dependencies": {
    "@inquirer/prompts": "^8.4.2",
    "chalk": "^6.0.0",
    "inquirer": "^14.0.0",
    "log-symbols": "^7.0.1",
    "ora": "^9.4.0",
    "p-queue": "^9.1.2",
    "text-table": "^0.2.0"
  },
  "devDependencies": {
    "@types/text-table": "^0.2.5",
    "strip-ansi": "^7.2.0"
  },
  "engines": {
    "node": "^22.18.0 || >=24.11.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}
