- Update all packages to latest versions via pnpm update --latest - Downgrade Prisma 7 to 6 (v7 requires schema migration) - Downgrade Tailwind CSS 4 to 3 (v4 requires PostCSS migration) - Downgrade Storybook 10 to 8 (addons not available in v10) - Pin cheerio to 1.0.0-rc.12 via pnpm override (type exports changed) - Fix AI SDK tool definitions: parameters -> inputSchema - Fix cheerio types in extract-meta and table-extract tools - Add explicit type annotations to tool execute functions - Migrate biome config to v2.3.11 schema All type-checks, tests, and builds pass.
71 lines
1.5 KiB
JSON
71 lines
1.5 KiB
JSON
{
|
|
"name": "@tpmjs/types",
|
|
"version": "0.2.0",
|
|
"description": "Shared TypeScript types and Zod schemas for TPMJS",
|
|
"author": "TPMJS",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tpmjs/tpmjs.git",
|
|
"directory": "packages/types"
|
|
},
|
|
"homepage": "https://tpmjs.com",
|
|
"keywords": [
|
|
"tpmjs",
|
|
"typescript",
|
|
"types",
|
|
"zod",
|
|
"schemas"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
"./tool": {
|
|
"types": "./dist/tool.d.ts",
|
|
"default": "./dist/tool.js"
|
|
},
|
|
"./registry": {
|
|
"types": "./dist/registry.d.ts",
|
|
"default": "./dist/registry.js"
|
|
},
|
|
"./tpmjs": {
|
|
"types": "./dist/tpmjs.d.ts",
|
|
"default": "./dist/tpmjs.js"
|
|
},
|
|
"./collection": {
|
|
"types": "./dist/collection.d.ts",
|
|
"default": "./dist/collection.js"
|
|
},
|
|
"./agent": {
|
|
"types": "./dist/agent.d.ts",
|
|
"default": "./dist/agent.js"
|
|
},
|
|
"./user": {
|
|
"types": "./dist/user.d.ts",
|
|
"default": "./dist/user.js"
|
|
},
|
|
"./executor": {
|
|
"types": "./dist/executor.d.ts",
|
|
"default": "./dist/executor.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist .turbo"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^4.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@tpmjs/tsconfig": "workspace:*",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|