chore(cli): drop Node.js v18 support (#4583)

This commit is contained in:
James George
2024-12-02 08:19:46 -08:00
committed by GitHub
parent e2e769db71
commit a08c6f6b3e
4 changed files with 145 additions and 90 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@hoppscotch/cli",
"version": "0.13.0",
"version": "0.20.0",
"description": "A CLI to run Hoppscotch test scripts in CI environments.",
"homepage": "https://hoppscotch.io",
"type": "module",
@@ -12,7 +12,7 @@
"access": "public"
},
"engines": {
"node": ">=18"
"node": ">=20"
},
"scripts": {
"build": "pnpm exec tsup",
@@ -48,24 +48,25 @@
"isolated-vm": "5.0.1",
"js-md5": "0.8.3",
"lodash-es": "4.17.21",
"papaparse": "5.4.1",
"qs": "6.13.0",
"verzod": "0.2.3",
"xmlbuilder2": "3.1.1",
"zod": "3.23.8",
"papaparse": "5.4.1"
"zod": "3.23.8"
},
"devDependencies": {
"@hoppscotch/data": "workspace:^",
"@hoppscotch/js-sandbox": "workspace:^",
"@relmify/jest-fp-ts": "2.1.1",
"@types/lodash-es": "4.17.12",
"@types/papaparse": "5.3.14",
"@types/qs": "6.9.16",
"fp-ts": "2.16.9",
"prettier": "3.3.3",
"qs": "6.11.2",
"semver": "7.6.3",
"tsup": "8.3.0",
"typescript": "5.6.3",
"vitest": "2.1.2",
"@types/papaparse": "5.3.14"
"vitest": "2.1.2"
}
}