-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.33 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.33 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "hungry-ghost-hive",
"version": "0.58.1",
"description": "AI Agent Orchestrator - Manages agile software development teams of AI agents",
"type": "module",
"bin": {
"hive": "./dist/index.js"
},
"main": "./dist/index.js",
"scripts": {
"prepare": "husky install || true && npm run build",
"postinstall": "node scripts/postinstall.js",
"build": "tsc && node scripts/sync-migrations.js",
"prepack": "npm run build",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikrich/hungry-ghost-hive.git"
},
"homepage": "https://github.com/nikrich/hungry-ghost-hive#readme",
"bugs": {
"url": "https://github.com/nikrich/hungry-ghost-hive/issues"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.0",
"@inquirer/prompts": "^8.2.0",
"@types/proper-lockfile": "^4.1.4",
"blessed": "^0.1.81",
"blessed-contrib": "^4.10.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^16.0.0",
"execa": "^9.0.0",
"level": "^8.0.1",
"nanoid": "^5.0.0",
"openai": "^4.0.0",
"ora": "^8.0.0",
"pg": "^8.20.0",
"proper-lockfile": "^4.1.2",
"sql.js": "^1.13.0",
"yaml": "^2.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@eslint/js": "^9.39.2",
"@types/blessed": "^0.1.0",
"@types/node": "^20.0.0",
"@types/pg": "^8.18.0",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.54.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"scripts",
"src",
"tsconfig.json"
],
"keywords": [
"ai",
"agents",
"orchestrator",
"cli",
"agile",
"development"
],
"license": "SEE LICENSE IN LICENSE",
"publishConfig": {
"access": "public"
}
}