Enable LLMs to handle webhooks with plaintext files
1{
2 "name": "@lure-hooks/fetch",
3 "version": "1.0.0",
4 "description": "Fetch API adapter for Lure — process webhook events into LLM prompts with Deno, Bun, and Cloudflare Workers",
5 "keywords": [
6 "bun",
7 "cloudflare-workers",
8 "deno",
9 "fetch",
10 "llm",
11 "prompt",
12 "webhook"
13 ],
14 "license": "ISC",
15 "author": "Graham Barber",
16 "files": [
17 "dist"
18 ],
19 "type": "module",
20 "main": "./dist/index.js",
21 "types": "./dist/index.d.ts",
22 "exports": {
23 ".": {
24 "import": "./dist/index.js",
25 "types": "./dist/index.d.ts"
26 }
27 },
28 "scripts": {
29 "build": "tsc --build",
30 "prepublishOnly": "tsc --build --force",
31 "test": "vitest run"
32 },
33 "dependencies": {
34 "@lure-hooks/core": "workspace:^"
35 },
36 "devDependencies": {
37 "@standard-schema/spec": "^1.1.0",
38 "@types/node": "^25.5.0",
39 "typescript": "^5.9.3",
40 "vitest": "^4.1.0"
41 },
42 "packageManager": "pnpm@11.0.0-dev.1005"
43}