tpmjs/packages/tools/markdown-formatter/package.json
Ajax Davis fada29ecbe feat: add npm-like features to tool detail page and update keyword to tpmjs
- Add download trend sparkline chart showing 30-day download history
- Add bundle size component with minified/gzipped sizes via bundlephobia proxy
- Add more install commands: yarn, bun, deno (in addition to npm, pnpm)
- Change discovery keyword from "tpmjs-tool" to "tpmjs" across entire codebase
- Update sync endpoints to use new keyword
- Update all documentation and package.json files

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-29 21:30:42 +10:00

35 lines
928 B
JSON

{
"name": "@tpmjs/markdown-formatter",
"version": "0.2.0",
"description": "AI SDK tools for formatting and manipulating markdown text",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"type-check": "tsc --noEmit"
},
"keywords": ["tpmjs", "markdown", "formatter", "text-processing"],
"tpmjs": {
"category": "text-analysis",
"frameworks": ["vercel-ai"],
"tools": [
{
"exportName": "markdownToPlainText",
"description": "Convert markdown to plain text by removing all formatting"
},
{
"exportName": "formatMarkdownTable",
"description": "Format and align markdown table columns for better readability"
}
]
},
"dependencies": {
"ai": "6.0.0-beta.131",
"zod": "^4.1.13"
},
"devDependencies": {
"@tpmjs/tsconfig": "workspace:*",
"typescript": "^5.9.3"
}
}