- 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.
56 lines
1.1 KiB
JSON
56 lines
1.1 KiB
JSON
{
|
|
"name": "@tpmjs/utils",
|
|
"version": "0.1.1",
|
|
"description": "Utility functions for TPMJS applications",
|
|
"author": "TPMJS",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tpmjs/tpmjs.git",
|
|
"directory": "packages/utils"
|
|
},
|
|
"homepage": "https://tpmjs.com",
|
|
"keywords": [
|
|
"tpmjs",
|
|
"typescript",
|
|
"utilities",
|
|
"tailwind"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
"./cn": {
|
|
"types": "./dist/cn.d.ts",
|
|
"default": "./dist/cn.js"
|
|
},
|
|
"./format": {
|
|
"types": "./dist/format.d.ts",
|
|
"default": "./dist/format.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"test": "vitest run",
|
|
"test:ui": "vitest --ui",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist .turbo"
|
|
},
|
|
"dependencies": {
|
|
"clsx": "^2.1.1",
|
|
"tailwind-merge": "^3.4.0",
|
|
"zod": "^4.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@tpmjs/test": "workspace:*",
|
|
"@tpmjs/tsconfig": "workspace:*",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.16"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|