-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.14 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.14 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
68
69
70
71
72
73
74
75
{
"name": "self-syncing-agent",
"version": "0.1.0",
"private": true,
"description": "An agent that writes its own webhook handlers and schema to sync third-party APIs into isolated, agent-owned SQLite databases on Cloudflare Durable Object Facets",
"keywords": [
"agents",
"ai",
"cloudflare"
],
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite dev",
"start": "vite dev",
"deploy": "vite build && wrangler deploy",
"types": "wrangler types env.d.ts --include-runtime false",
"format": "oxfmt --write .",
"lint": "oxlint src/",
"check": "oxfmt --check . && oxlint src/ && tsc && vitest run",
"test": "vitest run",
"test:watch": "vitest",
"refresh:apps": "node --experimental-strip-types scripts/refresh-pipedream-apps.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.71",
"@cloudflare/ai-chat": "^0.4.4",
"@cloudflare/kumo": "^1.18.0",
"@phosphor-icons/react": "^2.1.10",
"@pipedream/sdk": "^2.4.6",
"@streamdown/code": "^1.1.1",
"agents": "^0.11.1",
"ai": "^6.0.164",
"hono": "^4.12.14",
"jose": "^6.2.2",
"parallel-web": "^0.3.2",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"streamdown": "^2.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.29.0",
"@cloudflare/vite-plugin": "1.32.3",
"@cloudflare/vitest-pool-workers": "0.12.21",
"@cloudflare/workers-types": "^4.20260416.2",
"@oxfmt/binding-darwin-arm64": "0.45.0",
"@oxlint/binding-darwin-arm64": "1.60.0",
"@rolldown/binding-darwin-arm64": "1.0.0-rc.15",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vitest": "^2.1.9",
"wrangler": "4.83.0"
},
"engines": {
"node": ">=22.12.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"workerd",
"sharp",
"core-js-pure"
]
}
}