Socket
Socket
Sign inDemoInstall

@inquirer/core

Package Overview
Dependencies
Maintainers
3
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@inquirer/core - npm Package Compare versions

Comparing version 0.0.30-alpha.0 to 1.0.0

dist/cjs/index.js

51

package.json
{
"name": "@inquirer/core",
"type": "module",
"version": "0.0.30-alpha.0",
"version": "1.0.0",
"engines": {
"node": ">=14.18.0"
},
"description": "Core Inquirer prompt API",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"main": "./dist/cjs/index.js",
"typings": "./dist/cjs/types/index.d.mts",
"files": [
"dist/"
"dist/**/*"
],
"repository": "SBoudrias/Inquirer.js",
"repository": {
"type": "git",
"url": "https://github.com/SBoudrias/Inquirer.js.git"
},
"keywords": [

@@ -18,3 +23,2 @@ "answer",

"cli",
"cli",
"command",

@@ -53,23 +57,28 @@ "command-line",

],
"author": "Simon Boudrias",
"author": "Simon Boudrias <admin@simonboudrias.com>",
"license": "MIT",
"homepage": "https://github.com/SBoudrias/Inquirer.js/blob/master/packages/core/README.md",
"dependencies": {
"@inquirer/type": "^0.0.4-alpha.0",
"@inquirer/type": "^0.1.0",
"ansi-escapes": "^6.0.0",
"chalk": "^5.1.2",
"chalk": "^5.2.0",
"cli-spinners": "^2.7.0",
"cli-width": "^4.0.0",
"lodash": "^4.17.21",
"mute-stream": "^0.0.8",
"mute-stream": "^1.0.0",
"run-async": "^2.3.0",
"string-width": "^5.1.2",
"strip-ansi": "^7.0.1",
"wrap-ansi": "^8.0.1"
"wrap-ansi": "^8.1.0"
},
"devDependencies": {
"@inquirer/testing": "^0.0.5-alpha.0"
"@inquirer/testing": "^0.1.0",
"@jest/globals": "^29.5.0"
},
"scripts": {
"tsc": "tsc"
"tsc": "yarn run clean && yarn run tsc:esm && yarn run tsc:cjs",
"clean": "rm -rf dist",
"tsc:esm": "tsc -p ./tsconfig.esm.json",
"tsc:cjs": "tsc -p ./tsconfig.cjs.json && yarn run fix-ext",
"fix-ext": "ts-node ../../tools/rename-ext.ts"
},

@@ -79,3 +88,15 @@ "publishConfig": {

},
"gitHead": "f532af8be2d622caa5e54adf4c084d588c9ffad6"
"exports": {
".": {
"import": {
"types": "./dist/esm/types/index.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/types/index.d.mts",
"default": "./dist/cjs/index.js"
}
}
},
"gitHead": "bd58130dd8204945a31b062070b829003b8385fc"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc