-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.41 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.41 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
{
"name": "@baanish/hydra-cli",
"version": "0.1.0",
"description": "Multi-model swarm intelligence engine for your terminal",
"repository": {
"type": "git",
"url": "https://github.com/baanish/hydra-cli.git"
},
"type": "module",
"bin": {
"hydra": "./dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"start": "tsx src/index.ts",
"test": "vitest run",
"build": "tsc -p tsconfig.build.json && node scripts/copy-assets.mjs",
"typecheck": "tsc --noEmit",
"lint": "biome check src scripts README.md package.json tsconfig.json tsconfig.build.json vitest.config.ts .github",
"format": "biome format --write src scripts README.md package.json tsconfig.json tsconfig.build.json vitest.config.ts .github",
"prepack": "npm run build"
},
"dependencies": {
"@opentui/core": "^0.1.81",
"better-sqlite3": "^12.8.0",
"commander": "^13.1.0",
"nanoid": "^5.1.5",
"openai": "^4.83.0",
"unicode-animations": "^1.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.5.2",
"tsx": "^4.20.5",
"typescript": "^5.7.3",
"vitest": "^3.2.4"
},
"keywords": [
"cli",
"ai",
"swarm",
"multi-agent",
"research",
"intelligence",
"llm",
"tui",
"opentui"
],
"author": "Aanish Bhirud",
"license": "MIT",
"engines": {
"node": ">=24"
},
"files": ["dist", "README.md", "LICENSE"],
"publishConfig": {
"access": "public"
}
}