tpmjs/packages/tools/emoji-magic
Ajax Davis 67fa89b1fe chore: use workspace references for registry packages
- Changed @tpmjs/registry-execute and @tpmjs/registry-search to workspace:*
- This allows the web app to use local workspace versions
- Published npm packages still available for external users
2026-01-25 11:37:59 +10:00
..
src feat: add use cases marketing product with AI-generated content 2026-01-20 16:17:35 +10:00
CHANGELOG.md chore: use workspace references for registry packages 2026-01-25 11:37:59 +10:00
package.json chore: use workspace references for registry packages 2026-01-25 11:37:59 +10:00
README.md chore: release emoji-magic v0.2.0 and create-basic-tools v1.0.4 2025-12-05 00:10:18 +10:00
tsconfig.json chore: release emoji-magic v0.2.0 and create-basic-tools v1.0.4 2025-12-05 00:10:18 +10:00

@tpmjs/emoji-magic

AI SDK tools for emoji conversion and mood detection. Make your text more expressive!

Tools

textToEmoji

Convert text into emoji representations - perfect for making messages more expressive!

import { textToEmoji } from '@tpmjs/emoji-magic';

const result = await textToEmoji.execute({
  text: "I love my cat and dog",
  style: 'creative'
});
// Result: "I ❤️ my 🐱 and 🐶"

emojiMood

Detect the mood/sentiment and suggest appropriate emojis for the text.

import { emojiMood } from '@tpmjs/emoji-magic';

const result = await emojiMood.execute({
  text: "This is amazing! I'm so excited!",
  count: 3
});
// Returns: { mood: 'excited', suggestions: ['🎉', '🎊', '🥳'] }

Installation

npm install @tpmjs/emoji-magic

License

MIT