package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "name": "@inquirer/figures",
  3. "version": "1.0.11",
  4. "description": "Vendored version of figures, for CJS compatibility",
  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. "repository": {
  47. "type": "git",
  48. "url": "https://github.com/SBoudrias/Inquirer.js.git"
  49. },
  50. "license": "MIT",
  51. "author": "Simon Boudrias <admin@simonboudrias.com>",
  52. "sideEffects": false,
  53. "type": "module",
  54. "exports": {
  55. "./package.json": "./package.json",
  56. ".": {
  57. "import": {
  58. "types": "./dist/esm/index.d.ts",
  59. "default": "./dist/esm/index.js"
  60. },
  61. "require": {
  62. "types": "./dist/commonjs/index.d.ts",
  63. "default": "./dist/commonjs/index.js"
  64. }
  65. }
  66. },
  67. "main": "./dist/commonjs/index.js",
  68. "module": "./dist/esm/index.js",
  69. "types": "./dist/commonjs/index.d.ts",
  70. "files": [
  71. "dist"
  72. ],
  73. "scripts": {
  74. "attw": "attw --pack",
  75. "tsc": "tshy"
  76. },
  77. "devDependencies": {
  78. "@arethetypeswrong/cli": "^0.17.4",
  79. "@repo/tsconfig": "workspace:*",
  80. "tshy": "^3.0.2"
  81. },
  82. "engines": {
  83. "node": ">=18"
  84. },
  85. "tshy": {
  86. "exclude": [
  87. "src/**/*.test.ts"
  88. ],
  89. "exports": {
  90. "./package.json": "./package.json",
  91. ".": "./src/index.ts"
  92. }
  93. },
  94. "gitHead": "79a0b3e7446b4a3de09445bf2f4031e4190b6382"
  95. }