-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 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
{
"name": "pantha",
"module": "index.ts",
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/bun": "latest",
"@types/jsonwebtoken": "^9.0.10",
"@types/marked": "^6.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7"
},
"peerDependencies": {
"typescript": "^5"
},
"workspaces": [
"packages/server",
"packages/lib/shared",
"packages/lib/react-sdk",
"packages/web",
"packages/contracts"
],
"private": true,
"type": "module",
"scripts": {
"fmt-lint": "biome check --write",
"prepare": "husky",
"client:dev": "bun run --cwd packages/web dev",
"server:dev": "bun run --cwd packages/server dev",
"contracts:migrate": "bun run --cwd packages/contracts migrate",
"db:migrate": "bun run --cwd packages/server db:migrate",
"hardhat:node": "bun run --cwd packages/contracts localnode",
"tests": "bun run --cwd packages/server tests"
},
"lint-staged": {
"*.{js,ts,tsx,jsx,json,css}": "biome check --write"
},
"dependencies": {
"@filoz/synapse-sdk": "^0.39.0",
"@noble/curves": "^2.0.1",
"@qdrant/js-client-rest": "^1.16.2",
"@tanstack/ai": "^0.2.1",
"@tanstack/ai-gemini": "^0.3.1",
"@tanstack/ai-grok": "^0.1.0",
"@tanstack/ai-ollama": "^0.3.0",
"@tanstack/ai-openai": "^0.2.0",
"jsonwebtoken": "^9.0.3",
"marked": "^17.0.3",
"sharp": "^0.34.5",
"sqlite-vec": "^0.1.7-alpha.2",
"web-haptics": "^0.0.6",
"zod": "^4.3.6",
"zod-to-json-schema": "^3.25.1"
}
}