-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "agent-visibility-template",
"description": "Make your content visible to AI agents across every discovery surface — llms.txt, a typed JSON index, per-page Markdown, robots.txt, Content-Signal headers, and JSON-LD — all generated from one store by Workers AI.",
"cloudflare": {
"label": "AI Agent Visibility",
"products": [
"Workers",
"Workers AI",
"KV"
],
"categories": [
"ai"
],
"docs_url": "https://developers.cloudflare.com/workers-ai/",
"preview_image_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/60892561-2c5e-4e84-8c9c-d82963602200/public",
"preview_icon_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/7ee998bb-6d98-43ab-dd7f-3f2d85a89c00/public",
"publish": true,
"bindings": {
"SITE_NAME": {
"description": "The name of your site (shown across every agent surface)"
},
"SITE_DESCRIPTION": {
"description": "A one-line description of your site for AI agents"
},
"AI_MODEL": {
"description": "Workers AI model ID used for enrichment (default: @cf/meta/llama-3.3-70b-instruct-fp8-fast)"
},
"ENRICHMENT_CACHE_TTL": {
"description": "How long enriched records are cached in seconds (default: 3600)"
},
"CONTENT_SIGNAL": {
"description": "Content-Signal header value declaring agent usage intent (default: ai-input=yes, search=yes, ai-train=no)"
},
"ENABLE_WEB_BOT_AUTH": {
"description": "Set to 'true' to expose the optional Web Bot Auth identity surface (default: false)"
}
}
},
"dependencies": {
"hono": "4.11.1",
"react": "19.2.1",
"react-dom": "19.2.1"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.15.3",
"@cloudflare/vitest-pool-workers": "0.11.1",
"@cloudflare/workers-types": "^4.20260507.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.1",
"typescript": "5.9.3",
"vite": "^7.0.0",
"vitest": "3.2.4",
"wrangler": "4.88.0"
},
"private": true,
"scripts": {
"build": "tsc -b && vite build",
"cf-typegen": "wrangler types",
"check": "tsc -b && vite build && wrangler deploy --dry-run",
"deploy": "npm run build && wrangler deploy",
"dev": "vite",
"preview": "npm run build && vite preview",
"test": "vitest run"
},
"type": "module"
}