-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.67 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.67 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "zero-agent",
"private": true,
"type": "module",
"workspaces": [
"web",
"zero"
],
"scripts": {
"dev": "tsx dev.ts",
"build": "bun --filter web build",
"compile": "tsx build.ts",
"start": "NODE_ENV=production node --max-old-space-size=1024 --import tsx/esm server/index.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"trustedDependencies": ["sharp", "bcrypt", "better-sqlite3", "esbuild"],
"dependencies": {
"@0-ai/s3lite": "^0.6.0",
"@anthropic-ai/sandbox-runtime": "^0.0.50",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.2",
"@hono/node-server": "^1.19.12",
"@earendil-works/pi-agent-core": "^0.78.0",
"@earendil-works/pi-ai": "^0.78.0",
"@earendil-works/pi-coding-agent": "^0.78.0",
"@earendil-works/pi-tui": "^0.78.0",
"@mozilla/readability": "^0.6.0",
"@openrouter/ai-sdk-provider": "^2.8.0",
"@openrouter/sdk": "^0.12.3",
"@simplewebauthn/server": "^13.3.0",
"@types/ws": "^8.18.1",
"ai": "^6.0.164",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.8.0",
"dotenv": "^17.4.1",
"hono": "^4.12.11",
"imapflow": "^1.3.3",
"jose": "^6.1.3",
"linkedom": "^0.18.12",
"mailparser": "^3.9.8",
"nanoid": "^5.1.6",
"nodemailer": "^8.0.7",
"playwright": "^1.59.1",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"rebrowser-playwright": "^1.52.0",
"sharp": "^0.34.5",
"tsx": "^4.21.0",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2",
"typebox": "^1.1.24",
"web-push": "^3.6.7",
"which": "^6.0.1",
"ws": "^8.20.0",
"yaml": "^2.8.2",
"zero": "workspace:*",
"zod": "^4.3.6"
},
"devDependencies": {
"@tanstack/react-query": "^5.95.2",
"@types/bcrypt": "^6.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/mailparser": "^3.4.6",
"@types/node": "^25.5.0",
"@types/nodemailer": "^8.0.0",
"@types/react": "^19.2.14",
"@types/sharp": "^0.32.0",
"@types/turndown": "^5.0.6",
"@types/which": "^3.0.4",
"@vitest/coverage-v8": "^4.1.6",
"cheerio": "^1.2.0",
"date-fns": "^4.1.0",
"lucide-react": "^1.7.0",
"react-router": "^7.13.2",
"tailwindcss": "^4.2.2",
"typescript": "^5",
"vitest": "^4.1.2"
}
}