a little carrier pigeon that ferries figma events to discord
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 19 lines 507 B view raw
1{ 2 "name": "pigeon", 3 "version": "0.1.0", 4 "description": "pigeon carries Figma LIBRARY_PUBLISH events to a Discord channel webhook. Cloudflare Worker with 60s batching.", 5 "private": true, 6 "type": "module", 7 "license": "MIT", 8 "scripts": { 9 "dev": "wrangler dev", 10 "deploy": "wrangler deploy", 11 "tail": "wrangler tail", 12 "typecheck": "tsc --noEmit" 13 }, 14 "devDependencies": { 15 "@cloudflare/workers-types": "^4.20250101.0", 16 "typescript": "^5.5.0", 17 "wrangler": "^4.0.0" 18 } 19}