chore: update deps

old-agentic
Travis Fischer 2025-04-25 05:04:39 +07:00
rodzic db23c5f906
commit 17368dd9f4
6 zmienionych plików z 261 dodań i 326 usunięć

Wyświetl plik

@ -0,0 +1,12 @@
#!/bin/sh
if [ "$SKIP_SIMPLE_GIT_HOOKS" = "1" ]; then
echo "[INFO] SKIP_SIMPLE_GIT_HOOKS is set to 1, skipping hook."
exit 0
fi
if [ -f "$SIMPLE_GIT_HOOKS_RC" ]; then
. "$SIMPLE_GIT_HOOKS_RC"
fi
npx lint-staged

Wyświetl plik

@ -1,5 +1,5 @@
{
"extends": "@fisch0920/config/tsconfig-node",
"include": ["src"],
"include": ["src", "*.config.ts"],
"exclude": ["node_modules", "dist"]
}

Wyświetl plik

@ -1,6 +1,6 @@
{
"extends": "@fisch0920/config/tsconfig-node",
"include": ["src", "bin", "fixtures/**/*.ts"],
"include": ["src", "bin", "fixtures/**/*.ts", "*.config.ts"],
"exclude": [
"node_modules",
"dist",

Plik diff jest za duży Load Diff

Wyświetl plik

@ -4,22 +4,22 @@ packages:
updateConfig:
ignoreDependencies:
- p-throttle
- eslint
- '@nangohq/node'
catalog:
"@ai-sdk/openai": ^1.3.16
"@apidevtools/swagger-parser": ^10.1.1
"@dexaai/dexter": ^4.1.1
"@e2b/code-interpreter": ^1.1.1
"@fisch0920/config": ^1.0.4
"@googleapis/customsearch": ^3.2.0
"@langchain/core": ^0.3.46
"@langchain/openai": ^0.5.6
"@mastra/core": ^0.8.3
"@modelcontextprotocol/sdk": ^1.10.2
"@nangohq/node": 0.42.22
"@types/jsrsasign": ^10.5.15
"@types/node": ^22.14.1
"@xsai/tool": ^0.2.0-beta.3
'@ai-sdk/openai': ^1.3.18
'@apidevtools/swagger-parser': ^10.1.1
'@dexaai/dexter': ^4.1.1
'@e2b/code-interpreter': ^1.1.1
'@fisch0920/config': ^1.1.0
'@googleapis/customsearch': ^3.2.0
'@langchain/core': ^0.3.48
'@langchain/openai': ^0.5.7
'@mastra/core': ^0.9.0
'@modelcontextprotocol/sdk': ^1.10.2
'@nangohq/node': 0.42.22 # pinned for now
'@types/jsrsasign': ^10.5.15
'@types/node': ^22.15.0
'@xsai/tool': ^0.2.0-beta.4
ai: ^4.3.9
bumpp: ^10.1.0
camelcase: ^8.0.0
@ -42,33 +42,33 @@ catalog:
jsonrepair: ^3.12.0
jsrsasign: ^10.9.0
ky: ^1.8.1
langchain: ^0.3.23
langchain: ^0.3.24
lint-staged: ^15.5.1
llamaindex: ^0.10.2
mathjs: ^13.2.3
npm-run-all2: ^7.0.2
octokit: ^4.1.3
only-allow: ^1.2.1
openai: ^4.95.1
openai: ^4.96.0
openai-fetch: ^3.4.2
openai-zod-to-json-schema: ^1.0.3
openapi-types: ^12.1.3
p-map: ^7.0.3
p-throttle: 6.2.0
p-throttle: 6.2.0 # pinned for now
prettier: ^3.5.3
restore-cursor: ^5.1.0
simple-git-hooks: ^2.12.1
simple-git-hooks: ^2.13.0
string-strip-html: ^13.4.12
syncpack: 14.0.0-alpha.10
tsup: ^8.4.0
tsx: ^4.19.3
turbo: ^2.5.0
turbo: ^2.5.1
twitter-api-sdk: ^1.2.1
type-fest: ^4.40.0
typescript: ^5.8.3
vitest: ^3.1.2
wikibase-sdk: ^10.2.3
xsai: ^0.2.0-beta.3
xsai: ^0.2.0-beta.4
zod: ^3.24.3
zod-validation-error: ^3.4.0
zoominfo-api-auth-client: ^1.0.1

Wyświetl plik

@ -0,0 +1,5 @@
{
"extends": "@fisch0920/config/tsconfig-node",
"include": ["*.config.ts"],
"exclude": ["node_modules", "dist"]
}