Skip to content

Commit 25d81bd

Browse files
chore: bring back packages post merge
1 parent 4876fa5 commit 25d81bd

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

package-lock.json

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,29 +30,39 @@
3030
"reformat": "prettier --write .",
3131
"generate": "./scripts/generate.sh",
3232
"test": "vitest --coverage",
33+
"pre:test:accuracy": "npm run build:compile",
3334
"test:accuracy": "sh ./scripts/run-accuracy-tests.sh"
3435
},
3536
"license": "Apache-2.0",
3637
"devDependencies": {
38+
"@ai-sdk/anthropic": "^1.2.12",
39+
"@ai-sdk/azure": "^1.3.23",
40+
"@ai-sdk/openai": "^1.3.22",
3741
"@eslint/js": "^9.30.1",
42+
"@himanshusinghs/google": "^1.2.11",
3843
"@modelcontextprotocol/inspector": "^0.16.0",
3944
"@redocly/cli": "^1.34.4",
4045
"@types/node": "^24.0.12",
4146
"@types/simple-oauth2": "^5.0.7",
4247
"@types/yargs-parser": "^21.0.3",
4348
"@vitest/coverage-v8": "^3.2.4",
49+
"ai": "^4.3.16",
4450
"eslint": "^9.30.1",
4551
"eslint-config-prettier": "^10.1.5",
4652
"eslint-plugin-prettier": "^5.5.1",
4753
"globals": "^16.3.0",
54+
"microdiff": "^1.5.0",
4855
"mongodb-runner": "^5.9.2",
56+
"ollama-ai-provider": "^1.2.0",
4957
"openapi-types": "^12.1.3",
5058
"openapi-typescript": "^7.8.0",
5159
"prettier": "^3.6.2",
5260
"tsx": "^4.20.3",
5361
"typescript": "^5.8.3",
5462
"typescript-eslint": "^8.36.0",
5563
"vitest": "^3.2.4",
64+
"simple-git": "^3.28.0",
65+
"uuid": "^11.1.0",
5666
"yaml": "^2.8.0"
5767
},
5868
"dependencies": {

scripts/run-accuracy-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export MDB_ACCURACY_RUN_ID=$(npx uuid v4)
1818
# npm run test:accuracy -- tests/accuracy/some-test.test.ts
1919
TEST_PATH_PATTERN="${1:-tests/accuracy}"
2020
shift || true
21-
node --experimental-vm-modules node_modules/jest/bin/jest.js --bail --testPathPattern "$TEST_PATH_PATTERN" "$@"
21+
node --experimental-vm-modules node_modules/jest/bin/jest.js --bail --testPathPatterns "$TEST_PATH_PATTERN" "$@"
2222

2323
# Preserving the exit code from test run to correctly notify in the CI
2424
# environments when the tests fail.

0 commit comments

Comments
 (0)