Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,34 +44,34 @@
},
"homepage": "https://github.com/Hypersequent/qas-cli#readme",
"devDependencies": {
"@eslint/js": "^9.25.1",
"@eslint/js": "^10.0.1",
"@types/escape-html": "^1.0.4",
"@types/node": "^22.0.0",
"@types/semver": "^7.7.0",
"@types/xml2js": "^0.4.14",
"@types/yargs": "^17.0.33",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.0.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"lint-staged": "^17.0.8",
"msw": "^2.7.5",
"prettier": "^3.4.2",
"ts-add-js-extension": "^1.6.6",
"typescript": "^5.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.31.1",
"vitest": "^4.1.0"
},
"dependencies": {
"@napi-rs/keyring": "^1.2.0",
"chalk": "^5.4.1",
"dotenv": "^16.5.0",
"dotenv": "^17.4.2",
"escape-html": "^1.0.3",
"semver": "^7.7.1",
"strip-ansi": "^7.1.2",
"xml2js": "^0.6.2",
"yargs": "^17.7.2",
"zod": "^3.24.3"
"yargs": "^18.0.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Align the Node floor with yargs 18

This bump makes yargs a runtime dependency at v18, and the lockfile records yargs@18.0.0 with engines: {node: ^20.19.0 || ^22.12.0 || >=23}. However package.json and the startup version check still accept Node >=22.0.0, so users on Node 22.0–22.11 are allowed by qas-cli but have an unsupported runtime dependency; engine-strict installs will reject the package before the CLI can run. Please either keep yargs on v17 or raise the package/config Node requirement to match the new dependency floor.

Useful? React with 👍 / 👎.

"zod": "^4.4.3"
},
"bin": {
"qasphere": "build/bin/qasphere.js"
Expand Down
Loading
Loading