{
  "name": "@topcli/prompts",
  "version": "4.0.0",
  "description": "Node.js user input library for command-line interfaces.",
  "type": "module",
  "scripts": {
    "build": "tsdown src/index.ts --dts --clean",
    "prepublishOnly": "npm run build",
    "test-only": "node --test ./test/**/*.test.ts",
    "test-types": "npm run build && tsd && attw --pack . --profile esm-only",
    "test": "c8 -r html npm run test-only && npm run test-types",
    "lint": "eslint src test",
    "lint:fix": "eslint . --fix"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public",
    "provenance": true
  },
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    }
  },
  "keywords": [
    "node.js",
    "cli",
    "prompt"
  ],
  "files": [
    "dist"
  ],
  "author": "PierreDemailly <pierredemailly.pro@gmail.com>",
  "license": "ISC",
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.2",
    "@openally/config.eslint": "^2.2.0",
    "@openally/config.typescript": "^1.2.1",
    "@types/node": "^26.0.1",
    "c8": "^11.0.0",
    "tsd": "^0.33.0",
    "tsdown": "0.22.3",
    "typescript": "^6.0.2"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TopCli/prompts.git"
  },
  "bugs": {
    "url": "https://github.com/TopCli/prompts/issues"
  },
  "homepage": "https://github.com/TopCli/prompts#readme",
  "tsd": {
    "directory": "test/types"
  }
}
