-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.02 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.02 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "hoomanjs",
"version": "1.29.2",
"description": "Hackable AI agent toolkit for building local CLI, ACP, MCP, and channel-driven workflows.",
"author": {
"name": "Vaibhav Pandey",
"email": "contact@vaibhavpandey.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vaibhavpandeyvpz/hooman.git"
},
"bugs": {
"url": "https://github.com/vaibhavpandeyvpz/hooman/issues"
},
"homepage": "https://github.com/vaibhavpandeyvpz/hooman#readme",
"keywords": [
"acp",
"agent",
"ai",
"chat",
"cli",
"llm",
"mcp",
"skills",
"strands"
],
"type": "module",
"bin": {
"hooman": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/copy-bundled-assets.mjs",
"clean": "rm -rf dist",
"dev": "tsx src/cli.ts",
"prepack": "npm run build",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/jsdom": "^28.0.1",
"@types/lodash": "^4.17.24",
"@types/luxon": "^3.7.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/turndown": "^5.0.6",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.18.2",
"@ai-sdk/groq": "^3.0.35",
"@ai-sdk/moonshotai": "^2.0.16",
"@ai-sdk/xai": "^3.0.83",
"@anthropic-ai/sdk": "^0.89.0",
"@aws-sdk/client-bedrock-runtime": "^3.1028.0",
"@google/genai": "^1.40.0",
"@mendable/firecrawl-js": "^4.21.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@mozilla/readability": "^0.6.0",
"@opendataloader/pdf": "^2.4.3",
"@strands-agents/sdk": "^1.0.0",
"@tavily/core": "^0.7.2",
"better-sqlite3": "^12.8.0",
"cli-highlight": "^2.1.11",
"cli-spinners": "^3.4.0",
"commander": "^14.0.3",
"exa-js": "^2.12.1",
"fastq": "^1.20.1",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.9",
"ink": "^7.0.0",
"ink-ansi": "^1.0.0",
"ink-select-input": "^6.2.0",
"ink-text-input": "^6.0.0",
"ink-use-mouse": "^1.0.0",
"jsdom": "^29.0.2",
"lodash": "^4.18.1",
"luxon": "^3.7.2",
"mammoth": "^1.12.0",
"marked": "^18.0.2",
"millify": "^6.1.0",
"node-llama-cpp": "^3.18.1",
"ollama": "^0.6.3",
"openai": "^6.34.0",
"react": "^19.2.5",
"slugify": "^1.6.9",
"sqlite-vec": "^0.1.9",
"turndown": "^7.2.4",
"zod": "^4.3.6"
},
"optionalDependencies": {
"sqlite-vec-darwin-arm64": "0.1.9",
"sqlite-vec-darwin-x64": "0.1.9",
"sqlite-vec-linux-arm64": "0.1.9",
"sqlite-vec-linux-x64": "0.1.9",
"sqlite-vec-windows-x64": "0.1.9"
}
}