chore(deps): upgrade dependencies and drop ESLint

This commit is contained in:
Paul Hatcherian 2026-01-18 17:30:33 -06:00
parent 45a5cbb476
commit 3337b3eed3
30 changed files with 831 additions and 4024 deletions

View file

@ -17,12 +17,11 @@
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"format": "prettier --write **/**.ts",
"format-check": "prettier --check **/**.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write .",
"format-check": "prettier --check .",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --runInBand --config ./jest.config.js",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
"all": "npm run build && npm run format-check && npm run package && npm test"
},
"repository": {
"type": "git",
@ -49,11 +48,7 @@
},
"devDependencies": {
"@types/node": "^22.19.7",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^8.57.1",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^27.9.0",
"jest": "^30.2.0",
"js-yaml": "^4.1.1",
"prettier": "^3.8.0",