@inquirer/core
Advanced tools
Comparing version 0.0.30-alpha.0 to 1.0.0
{ | ||
"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" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
48115
35
845
0
0
2
1
No
+ Added@inquirer/type@0.1.0(transitive)
+ Addedmute-stream@1.0.0(transitive)
- Removed@inquirer/type@0.0.4-alpha.0(transitive)
- Removedmute-stream@0.0.8(transitive)
Updated@inquirer/type@^0.1.0
Updatedchalk@^5.2.0
Updatedmute-stream@^1.0.0
Updatedwrap-ansi@^8.1.0