chore(deps): update eslint and typescript-eslint dependencies

feat(package.json): add overrides for ajv and whatwg-url packages
fix(deepseek.ts): correct import path for OpenAiEngine and OpenAiConfig
This commit is contained in:
Marc-Antoine Favreau
2025-04-12 11:28:30 -04:00
parent 9418f67636
commit beecedf6f3
6 changed files with 24114 additions and 14354 deletions
+10755 -5779
View File
File diff suppressed because one or more lines are too long
+11452 -6811
View File
File diff suppressed because one or more lines are too long
Binary file not shown.
+1899 -1760
View File
File diff suppressed because it is too large Load Diff
+7 -3
View File
@@ -67,12 +67,12 @@
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^16.18.14",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"cli-testing-library": "^2.0.2",
"dotenv": "^16.0.3",
"esbuild": "^0.15.18",
"eslint": "^8.28.0",
"eslint": "^9.24.0",
"jest": "^29.7.0",
"prettier": "^2.8.4",
"ts-jest": "^29.1.2",
@@ -102,5 +102,9 @@
"openai": "^4.57.0",
"punycode": "^2.3.1",
"zod": "^3.23.8"
},
"overrides": {
"ajv": "^8.17.1",
"whatwg-url": "^14.0.0"
}
}
+1 -1
View File
@@ -2,7 +2,7 @@ import axios from 'axios';
import { OpenAI } from 'openai';
import { GenerateCommitMessageErrorEnum } from '../generateCommitMessageFromGitDiff';
import { tokenCount } from '../utils/tokenCount';
import { OpenAiEngine, OpenAiConfig } from './openAI';
import { OpenAiEngine, OpenAiConfig } from './openAi';
export interface DeepseekConfig extends OpenAiConfig {}