-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.72 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.72 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
{
"name": "skyth",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"test": "bun test tests/",
"start": "bun run skyth/cli/main.ts",
"gateway": "bun run skyth/gateway/gateway.ts",
"quasar": "cargo run --manifest-path quasar/Cargo.toml",
"build:bin": "mkdir -p dist && printf '#!/usr/bin/env bun\\nimport \"../skyth/cli/main.ts\";\\n' > dist/skyth && chmod +x dist/skyth",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/glob": "^9.0.0",
"@types/http-proxy": "^1.17.17",
"@types/ws": "^8.18.1",
"eslint": "^10.1.0"
},
"peerDependencies": {
"typescript": "^6.0.2"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.64",
"@ai-sdk/google": "^3.0.79",
"@ai-sdk/openai": "^3.0.48",
"@ai-sdk/openai-compatible": "^2.0.37",
"@clack/prompts": "^1.1.0",
"@earendil-works/pi-agent-core": "0.75.5",
"@earendil-works/pi-ai": "0.75.5",
"@homebridge/ciao": "^1.3.6",
"@modelcontextprotocol/sdk": "^1.29.0",
"@toon-format/toon": "^2.1.0",
"ai": "^6.0.158",
"argon2": "^0.44.0",
"chalk": "^5.6.2",
"cron-parser": "^5.5.0",
"glob": "^13.0.6",
"hono": "^4.12.21",
"http-proxy": "^1.18.1",
"sqlite-vec": "^0.1.9",
"ws": "^8.20.0",
"yaml": "^2.8.3",
"zod": "^4.3.6"
},
"overrides": {
"@hono/node-server": "^1.19.10",
"brace-expansion": "^5.0.5",
"cookie": "^0.7.0",
"devalue": "^5.6.4",
"fast-xml-parser": "^5.3.8",
"flatted": "^3.4.0",
"hono": "^4.12.4",
"minimatch": "^9.0.7",
"path-to-regexp": "^8.4.0",
"picomatch": "^4.0.4",
"file-type": "^21.3.1"
},
"trustedDependencies": [
"@google/genai",
"protobufjs"
]
}