mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
As title - move all applications and browser extension into a `packages/twenty-apps/hacktoberfest-2025` folder
47 lines
1.5 KiB
JSON
47 lines
1.5 KiB
JSON
{
|
||
"version": "0.0.1",
|
||
"license": "MIT",
|
||
"engines": {
|
||
"node": "^24.5.0",
|
||
"npm": "please-use-yarn",
|
||
"yarn": ">=4.0.2"
|
||
},
|
||
"packageManager": "yarn@4.9.2",
|
||
"dependencies": {
|
||
"twenty-sdk": "0.0.3"
|
||
},
|
||
"devDependencies": {
|
||
"@types/node": "^24.7.2"
|
||
},
|
||
"$schema": "https://raw.githubusercontent.com/twentyhq/twenty/main/packages/twenty-cli/src/constants/schemas/appManifest.schema.json",
|
||
"universalIdentifier": "b53627f5-ca60-478c-bc43-c7ab4904e34a",
|
||
"name": "Activity Summary",
|
||
"description": "A TypeScript-based reporting bot that summarizes activity from your Twenty CRM workspace and sends daily/periodic reports to Slack, Discord, and WhatsApp. Meet Kylian Mbaguette, your friendly CRM activity reporter!",
|
||
"env": {
|
||
"TWENTY_API_KEY": {
|
||
"description": "Twenty API Key",
|
||
"isSecret": true
|
||
},
|
||
"DAYS_AGO": {
|
||
"description": "How far back into the past we want to summarise – defaults to the past 7 days",
|
||
"value": "7",
|
||
"isSecret": false
|
||
},
|
||
"SLACK_HOOK_URL": {
|
||
"description": "Slack hook URL for sending message to channel",
|
||
"isSecret": true
|
||
},
|
||
"DISCORD_WEBHOOK_URL": {
|
||
"description": "Discord webhook URL for sending message to channel of a server",
|
||
"isSecret": true
|
||
},
|
||
"FB_GRAPH_TOKEN": {
|
||
"description": "For Facebook auth",
|
||
"isSecret": true
|
||
},
|
||
"WHATSAPP_RECIPIENT_PHONE_NUMBER": {
|
||
"description": "Phone number for receiving WhatsApp message",
|
||
"isSecret": true
|
||
}
|
||
}
|
||
}
|