$ cat node_modules/@agentic/google-drive/package.json
{
"name": "@agentic/google-drive",
"version": "7.6.9",
"description": "Agentic SDK for Google Drive.",
"author": "Travis Fischer <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git",
"directory": "packages/google-drive"
},
"type": "module",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"dependencies": {
"type-fest": "^4.41.0",
"@agentic/core": "7.6.9"
},
"devDependencies": {
"googleapis": "^150.0.1"
},
"peerDependencies": {
"googleapis": "^150.0.1",
"zod": "^3.25.67"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "del dist",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:typecheck": "tsc --noEmit"
}
}%
Currently
@agentic/google-driveis7.6.9and is referencing3.25.67, but AI SDK 5 recently migrated to zod v4.https://ai-sdk.dev/docs/migration-guides/migration-guide-5-0#ai-sdk-50-package-versions
Can we republish this package (and
@agentic/coreif needed), to support zod v4?