tpmjs/packages/tools/emoji-magic/package.json
Ajax Davis 2cd2b10cd0 refactor: replace exportName with name throughout codebase
- Update TpmjsToolDefinitionSchema to only use 'name' field
- Add 'sandbox' as valid category for sprites tools
- Update all package.json files to use 'name' instead of 'exportName'
- Update documentation and source files accordingly
- Add 11 new sprites tools for sandbox/code-execution
2026-01-14 14:18:36 +10:00

42 lines
945 B
JSON

{
"name": "@tpmjs/emoji-magic",
"version": "0.2.1",
"description": "AI SDK tools for emoji-magic - convert text to emojis and back!",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"type-check": "tsc --noEmit"
},
"keywords": [
"tpmjs",
"emoji",
"ai",
"text-processing"
],
"tpmjs": {
"category": "text-analysis",
"frameworks": [
"vercel-ai"
],
"tools": [
{
"name": "textToEmoji",
"description": "Convert text into emoji representations - perfect for making messages more expressive!"
},
{
"name": "emojiMood",
"description": "Detect the mood/sentiment and suggest appropriate emojis for the text"
}
]
},
"dependencies": {
"ai": "6.0.23",
"zod": "^4.3.5"
},
"devDependencies": {
"@tpmjs/tsconfig": "workspace:*",
"typescript": "^5.9.3"
}
}