Enable LLMs to handle webhooks with plaintext files
at main 32 lines 707 B view raw
1{ 2 "name": "lure", 3 "version": "1.0.0", 4 "description": "Process webhook events into LLM-consumable prompts", 5 "keywords": [ 6 "liquid", 7 "llm", 8 "prompt", 9 "template", 10 "webhook" 11 ], 12 "license": "ISC", 13 "author": "Graham Barber", 14 "type": "module", 15 "main": "index.js", 16 "scripts": { 17 "fmt": "oxfmt", 18 "fmt:check": "oxfmt --check", 19 "lint": "oxlint", 20 "lint:fix": "oxlint --fix", 21 "test": "pnpm -r test", 22 "changeset": "changeset", 23 "version-packages": "changeset version" 24 }, 25 "devDependencies": { 26 "@changesets/cli": "^2.30.0", 27 "oxfmt": "^0.41.0", 28 "oxlint": "^1.56.0", 29 "typescript": "^5.9.3" 30 }, 31 "packageManager": "pnpm@11.0.0-dev.1005" 32}