-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 761 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 761 Bytes
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
{
"name": "aletheia",
"version": "0.1.0",
"description": "Personal truth-grounded AI research assistant",
"type": "module",
"scripts": {
"dev": "bun run --watch src/server.ts",
"start": "bun run src/server.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"hono": "^4.6.0",
"@hono/zod-validator": "^0.4.0",
"zod": "^3.23.0",
"openai": "^4.70.0",
"@zilliz/milvus2-sdk-node": "^2.5.0",
"@elastic/elasticsearch": "^8.16.0",
"js-tiktoken": "^1.0.15",
"mathjs": "^13.2.0",
"pdfjs-dist": "^4.8.0",
"@napi-rs/canvas": "^0.1.79",
"cohere-ai": "^7.14.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/uuid": "^10.0.0",
"typescript": "^5.6.0"
}
}