forked from khoj-ai/pipali
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.06 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.06 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
{
"name": "pipali",
"version": "0.2.3",
"description": "Personal AI for knowledge work. Make work easy.",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun run src/server/index.ts",
"dev": "bun run --watch src/server/index.ts",
"build": "bun run scripts/build.ts",
"build:darwin-arm64": "bun run scripts/build.ts --target=bun-darwin-arm64",
"build:darwin-x64": "bun run scripts/build.ts --target=bun-darwin-x64",
"build:linux-x64": "bun run scripts/build.ts --target=bun-linux-x64",
"build:linux-arm64": "bun run scripts/build.ts --target=bun-linux-arm64",
"build:windows-x64": "bun run scripts/build.ts --target=bun-windows-x64",
"tauri:dev": "bunx tauri dev",
"tauri:build": "bun run scripts/build-tauri.ts",
"tauri:build:debug": "bun run scripts/build-tauri.ts --debug",
"tauri:build:darwin-arm64": "bun run scripts/build-tauri.ts --platform=darwin-arm64",
"tauri:build:darwin-x64": "bun run scripts/build-tauri.ts --platform=darwin-x64",
"tauri:build:linux-x64": "bun run scripts/build-tauri.ts --platform=linux-x64",
"tauri:build:windows-x64": "bun run scripts/build-tauri.ts --platform=windows-x64",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"db:generate": "bunx drizzle-kit generate",
"db:migrate": "bunx drizzle-kit migrate",
"postinstall": "tsc -p node_modules/@anthropic-ai/sandbox-runtime/tsconfig.json || true"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@tauri-apps/cli": "^2",
"@types/bun": "latest",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.182.0",
"@vitejs/plugin-react": "^4.4.1",
"pino-pretty": "^13.1.3",
"vite": "^6.3.5"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"@anthropic-ai/sandbox-runtime": "github:khoj-ai/sandbox-runtime#allow-mach-lookup",
"@electric-sql/pglite": "^0.3.14",
"@hono/swagger-ui": "^0.5.2",
"@hono/zod-openapi": "^1.1.5",
"@hono/zod-validator": "^0.7.5",
"@langchain/community": "^1.1.0",
"@modelcontextprotocol/sdk": "^1.12.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-notification": "^2",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-shell": "^2.3.4",
"@types/uuid": "^11.0.0",
"croner": "^9.0.0",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.44.7",
"exceljs": "^4.4.0",
"hono": "^4.11.1",
"katex": "^0.16.27",
"lucide-react": "^0.560.0",
"mammoth": "^1.11.0",
"minimatch": "^10.0.0",
"officeparser": "^5.2.2",
"openai": "^6.16.0",
"pdf-parse": "^1.1.4",
"pg": "^8.16.3",
"pino": "^10.1.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"three": "^0.182.0",
"uuid": "^13.0.0",
"zod": "^4.2.1"
}
}