-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.72 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
{
"name": "agent-orchestrator",
"version": "1.5.0",
"description": "Agent Orchestrator - A multi-agent orchestration system",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/AgentOrchestrator/AgentBase.git"
},
"overrides": {
"@types/react": "^19",
"@types/react-dom": "^19"
},
"type": "module",
"packageManager": "npm@10.2.4",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run start",
"lint": "biome lint . && ./scripts/lint-no-silent-returns.sh --all",
"lint:fix": "biome lint --write .",
"lint:silent-returns": "./scripts/lint-no-silent-returns.sh --all",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"check:fix": "biome check --write .",
"test": "turbo run test",
"type-check": "turbo run type-check",
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules apps/*/.next apps/*/dist",
"dev:desktop": "npm run build --workspace=@agent-orchestrator/shared && npm run dev --workspace=desktop",
"dev:mcp": "npm run build --workspace=@agent-orchestrator/shared && npm run dev:mcp --workspace=desktop",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@types/node": "^22.0.0",
"husky": "^9.1.7",
"semantic-release": "^24.2.9",
"turbo": "^2.3.0",
"typescript": "^5.9.3"
}
}