package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. {
  2. "name": "@inquirer/prompts",
  3. "version": "7.3.2",
  4. "description": "Inquirer prompts, combined in a single package",
  5. "keywords": [
  6. "answer",
  7. "answers",
  8. "ask",
  9. "base",
  10. "cli",
  11. "command",
  12. "command-line",
  13. "confirm",
  14. "enquirer",
  15. "generate",
  16. "generator",
  17. "hyper",
  18. "input",
  19. "inquire",
  20. "inquirer",
  21. "interface",
  22. "iterm",
  23. "javascript",
  24. "menu",
  25. "node",
  26. "nodejs",
  27. "prompt",
  28. "promptly",
  29. "prompts",
  30. "question",
  31. "readline",
  32. "scaffold",
  33. "scaffolder",
  34. "scaffolding",
  35. "stdin",
  36. "stdout",
  37. "terminal",
  38. "tty",
  39. "ui",
  40. "yeoman",
  41. "yo",
  42. "zsh",
  43. "types",
  44. "typescript"
  45. ],
  46. "homepage": "https://github.com/SBoudrias/Inquirer.js/blob/main/packages/prompts/README.md",
  47. "repository": {
  48. "type": "git",
  49. "url": "https://github.com/SBoudrias/Inquirer.js.git"
  50. },
  51. "license": "MIT",
  52. "author": "Simon Boudrias <admin@simonboudrias.com>",
  53. "sideEffects": false,
  54. "type": "module",
  55. "exports": {
  56. "./package.json": "./package.json",
  57. ".": {
  58. "import": {
  59. "types": "./dist/esm/index.d.ts",
  60. "default": "./dist/esm/index.js"
  61. },
  62. "require": {
  63. "types": "./dist/commonjs/index.d.ts",
  64. "default": "./dist/commonjs/index.js"
  65. }
  66. }
  67. },
  68. "main": "./dist/commonjs/index.js",
  69. "module": "./dist/esm/index.js",
  70. "types": "./dist/commonjs/index.d.ts",
  71. "files": [
  72. "dist"
  73. ],
  74. "scripts": {
  75. "attw": "attw --pack",
  76. "tsc": "tshy"
  77. },
  78. "dependencies": {
  79. "@inquirer/checkbox": "^4.1.2",
  80. "@inquirer/confirm": "^5.1.6",
  81. "@inquirer/editor": "^4.2.7",
  82. "@inquirer/expand": "^4.0.9",
  83. "@inquirer/input": "^4.1.6",
  84. "@inquirer/number": "^3.0.9",
  85. "@inquirer/password": "^4.0.9",
  86. "@inquirer/rawlist": "^4.0.9",
  87. "@inquirer/search": "^3.0.9",
  88. "@inquirer/select": "^4.0.9"
  89. },
  90. "devDependencies": {
  91. "@arethetypeswrong/cli": "^0.17.3",
  92. "@inquirer/type": "^3.0.4",
  93. "@repo/tsconfig": "workspace:*",
  94. "tshy": "^3.0.2"
  95. },
  96. "engines": {
  97. "node": ">=18"
  98. },
  99. "tshy": {
  100. "exclude": [
  101. "src/**/*.test.ts"
  102. ],
  103. "exports": {
  104. "./package.json": "./package.json",
  105. ".": "./src/index.ts"
  106. }
  107. },
  108. "peerDependencies": {
  109. "@types/node": ">=18"
  110. },
  111. "peerDependenciesMeta": {
  112. "@types/node": {
  113. "optional": true
  114. }
  115. },
  116. "gitHead": "27c8859a99557790d1f87721e185a5208c8487db"
  117. }