package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. {
  2. "name": "@inquirer/core",
  3. "version": "10.1.13",
  4. "description": "Core Inquirer prompt API",
  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. ],
  44. "homepage": "https://github.com/SBoudrias/Inquirer.js/blob/main/packages/core/README.md",
  45. "repository": {
  46. "type": "git",
  47. "url": "https://github.com/SBoudrias/Inquirer.js.git"
  48. },
  49. "license": "MIT",
  50. "author": "Simon Boudrias <admin@simonboudrias.com>",
  51. "sideEffects": false,
  52. "type": "module",
  53. "exports": {
  54. "./package.json": "./package.json",
  55. ".": {
  56. "import": {
  57. "types": "./dist/esm/index.d.ts",
  58. "default": "./dist/esm/index.js"
  59. },
  60. "require": {
  61. "types": "./dist/commonjs/index.d.ts",
  62. "default": "./dist/commonjs/index.js"
  63. }
  64. }
  65. },
  66. "main": "./dist/commonjs/index.js",
  67. "module": "./dist/esm/index.js",
  68. "types": "./dist/commonjs/index.d.ts",
  69. "files": [
  70. "dist"
  71. ],
  72. "scripts": {
  73. "attw": "attw --pack",
  74. "tsc": "tshy"
  75. },
  76. "dependencies": {
  77. "@inquirer/figures": "^1.0.12",
  78. "@inquirer/type": "^3.0.7",
  79. "ansi-escapes": "^4.3.2",
  80. "cli-width": "^4.1.0",
  81. "mute-stream": "^2.0.0",
  82. "signal-exit": "^4.1.0",
  83. "wrap-ansi": "^6.2.0",
  84. "yoctocolors-cjs": "^2.1.2"
  85. },
  86. "devDependencies": {
  87. "@arethetypeswrong/cli": "^0.18.1",
  88. "@inquirer/testing": "^2.1.47",
  89. "@types/mute-stream": "^0.0.4",
  90. "@types/node": "^22.14.0",
  91. "@types/wrap-ansi": "^3.0.0",
  92. "tshy": "^3.0.2"
  93. },
  94. "peerDependencies": {
  95. "@types/node": ">=18"
  96. },
  97. "peerDependenciesMeta": {
  98. "@types/node": {
  99. "optional": true
  100. }
  101. },
  102. "engines": {
  103. "node": ">=18"
  104. },
  105. "publishConfig": {
  106. "access": "public"
  107. },
  108. "tshy": {
  109. "exclude": [
  110. "src/**/*.test.ts"
  111. ],
  112. "exports": {
  113. "./package.json": "./package.json",
  114. ".": "./src/index.ts"
  115. }
  116. },
  117. "gitHead": "dc0770cf6344140b19b2e6b82330fc51084653d1"
  118. }