-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.53 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.53 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": "multea",
"version": "0.1.0",
"description": "Terminal-based multi-agent orchestrator for Claude Code",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsup src/index.tsx --format esm --outDir dist --silent && node dist/index.js",
"build": "tsup src/index.tsx --format esm --outDir dist",
"smoke": "tsup src/smoke.ts --format esm --outDir dist --silent && node dist/smoke.js",
"lint": "eslint src/",
"format": "prettier --write src/"
},
"author": "ashokDevs",
"repository": {
"type": "git",
"url": "https://github.com/ashokDevs/multea.git"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"ai-agent",
"multi-agent",
"agent-orchestrator",
"llm",
"terminal-ui",
"tui",
"react",
"ink",
"typescript",
"task-queue",
"dag",
"developer-tools",
"devtools",
"ai-coding-assistant",
"code-generation",
"automation",
"orchestration",
"multi-repo",
"monorepo",
"cli"
],
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"dotenv": "^17.2.3",
"ink": "^6.6.0",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}