-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.99 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
{
"name": "@zaherg/chorus",
"version": "0.0.7",
"type": "module",
"packageManager": "bun@1.3.14",
"bin": {
"consensus": "dist/cli.js"
},
"files": [
"skills",
"dist",
"src",
"README.md",
"CHANGELOG.md",
"DISCLAIMER.md"
],
"scripts": {
"build": "bun build --target=bun --minify --banner '#!/usr/bin/env bun' src/cli.ts --outdir dist",
"build:binary": "bun build --minify --compile src/cli.ts --target=bun-darwin-arm64 --outfile dist/consensus-darwin-arm64 && bun build --minify --compile src/cli.ts --target=bun-darwin-x64 --outfile dist/consensus-darwin-x64 && bun build --minify --compile src/cli.ts --target=bun-linux-x64 --outfile dist/consensus-linux-x64 && bun build --minify --compile src/cli.ts --target=bun-linux-arm64 --outfile dist/consensus-linux-arm64 && bun build --minify --compile src/cli.ts --target=bun-windows-x64 --outfile dist/consensus-windows-x64.exe",
"dev": "bun run src/cli.ts",
"lint:check": "bunx --yes biome check .",
"lint:fix": "bunx --yes biome check --write .",
"format:fix": "bunx --yes biome format --write .",
"format:check": "bunx --yes biome format .",
"prepack": "bun run build:binary",
"test": "bun test tests/*.test.ts --isolate",
"changelog:update": "git-cliff --config .github/config/cliff.toml -o CHANGELOG.md"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^5.0.67",
"@ai-sdk/anthropic": "^4.0.45",
"@ai-sdk/azure": "^4.0.53",
"@ai-sdk/google-vertex": "^5.0.69",
"@ai-sdk/openai-compatible": "^3.0.40",
"@logtape/file": "^2.3.2",
"@logtape/logtape": "^2.3.2",
"@openrouter/ai-sdk-provider": "^3.0.0",
"ai": "^7.0.84",
"minimist": "^1.2.8",
"zod": "^4.5.2"
},
"devDependencies": {
"@types/bun": "^1.4.0",
"@types/minimist": "^1.2.5",
"@types/node": "26.1.1",
"typescript": "^7.0.2"
}
}