UNPKG

2 kBJSONView Raw
1{
2 "name": "inquirer",
3 "version": "10.0.4",
4 "description": "A collection of common interactive command line user interfaces.",
5 "author": "Simon Boudrias <admin@simonboudrias.com>",
6 "main": "./dist/cjs/index.js",
7 "files": [
8 "dist/**/*"
9 ],
10 "keywords": [
11 "answer",
12 "answers",
13 "ask",
14 "base",
15 "cli",
16 "command",
17 "command-line",
18 "confirm",
19 "enquirer",
20 "generate",
21 "generator",
22 "hyper",
23 "input",
24 "inquire",
25 "inquirer",
26 "interface",
27 "iterm",
28 "javascript",
29 "menu",
30 "node",
31 "nodejs",
32 "prompt",
33 "promptly",
34 "prompts",
35 "question",
36 "readline",
37 "scaffold",
38 "scaffolder",
39 "scaffolding",
40 "stdin",
41 "stdout",
42 "terminal",
43 "tty",
44 "ui",
45 "yeoman",
46 "yo",
47 "zsh"
48 ],
49 "engines": {
50 "node": ">=18"
51 },
52 "repository": {
53 "type": "git",
54 "url": "https://github.com/SBoudrias/Inquirer.js.git"
55 },
56 "license": "MIT",
57 "dependencies": {
58 "@inquirer/prompts": "^5.2.1",
59 "@inquirer/type": "^1.5.0",
60 "@types/mute-stream": "^0.0.4",
61 "ansi-escapes": "^4.3.2",
62 "mute-stream": "^1.0.0",
63 "run-async": "^3.0.0",
64 "rxjs": "^7.8.1"
65 },
66 "homepage": "https://github.com/SBoudrias/Inquirer.js/blob/main/packages/inquirer/README.md",
67 "sideEffects": false,
68 "scripts": {
69 "tsc": "yarn run tsc:esm && yarn run tsc:cjs",
70 "tsc:esm": "rm -rf dist/esm && tsc -p ./tsconfig.json",
71 "tsc:cjs": "rm -rf dist/cjs && tsc -p ./tsconfig.cjs.json && node ../../tools/fix-ext.mjs",
72 "tsc:watch": "tsc -p ./tsconfig.json --watch",
73 "attw": "attw --pack"
74 },
75 "exports": {
76 ".": {
77 "import": {
78 "types": "./dist/esm/types/index.d.mts",
79 "default": "./dist/esm/index.mjs"
80 },
81 "require": {
82 "types": "./dist/cjs/types/index.d.ts",
83 "default": "./dist/cjs/index.js"
84 }
85 }
86 },
87 "typings": "./dist/cjs/types/index.d.ts",
88 "gitHead": "f2c4983dd390c6244fb4668a8e87c9e786e4326f"
89}