- 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
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"name": "@tpmjs/discord-post",
|
|
"version": "0.2.1",
|
|
"description": "AI SDK tool to post messages to a Discord channel",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"keywords": [
|
|
"tpmjs",
|
|
"discord",
|
|
"ai",
|
|
"communication"
|
|
],
|
|
"tpmjs": {
|
|
"category": "communication",
|
|
"frameworks": [
|
|
"vercel-ai"
|
|
],
|
|
"env": [
|
|
{
|
|
"name": "DISCORD_BOT_TOKEN",
|
|
"description": "Discord bot token with Send Messages permission",
|
|
"required": true
|
|
}
|
|
],
|
|
"tools": [
|
|
{
|
|
"name": "discordPostTool",
|
|
"description": "Post a message or rich embed to a Discord channel. Supports plain text messages and formatted embeds with titles, descriptions, colors, and fields."
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"ai": "6.0.49"
|
|
},
|
|
"devDependencies": {
|
|
"@tpmjs/tsconfig": "workspace:*",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "MIT"
|
|
}
|