-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.42 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.42 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
122
123
{
"name": "codeai-hub",
"displayName": "CodeAI Hub",
"description": "Unified VS Code extension for orchestrating AI providers.",
"version": "1.1.641",
"publisher": "CodeAIHub",
"license": "ISC",
"workspaces": [
"packages/*",
"packages/agents/shared",
"packages/agents/description-agent",
"packages/agents/reviewer-agent",
"packages/agents/idea-collector"
],
"engines": {
"vscode": "^1.85.0"
},
"activationEvents": [
"onStartupFinished"
],
"categories": [
"AI",
"Other"
],
"icon": "media/icon.png",
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "codeai-hub-container",
"title": "CodeAI Hub",
"icon": "media/icon.svg"
}
]
},
"views": {
"codeai-hub-container": [
{
"type": "webview",
"id": "codeaiHubView",
"name": "CodeAI Hub",
"icon": "media/icon.svg"
}
]
},
"commands": [
{
"command": "codeaiHub.openSettings",
"title": "Settings",
"category": "CodeAI Hub",
"icon": "$(settings-gear)"
}
],
"menus": {
"view/title": [
{
"command": "codeaiHub.openSettings",
"when": "view == codeaiHubView",
"group": "navigation"
}
]
}
},
"scripts": {
"check:architecture": "./scripts/check-architecture.sh",
"lint": "echo \"lint script not configured yet\"",
"check:tsprune": "ts-prune",
"check:dup": "jscpd --threshold 3 --silent --reporters console src --ignore \"**/node_modules/**\"",
"check:links": "bash -lc 'set -e; if command -v markdown-link-check >/dev/null; then find doc -name \"*.md\" -print0 | xargs -0 -n1 markdown-link-check -q; fi'",
"typecheck:webview": "tsc -p tsconfig.webview.json --pretty false",
"quality": "npm run check:architecture && npm run lint && npm run typecheck:webview",
"setup:hooks": "npx lefthook install",
"build:webview": "node ./scripts/build-webview.js",
"build:project-manager": "node ./scripts/build-project-manager.js",
"build:core": "npm run build --workspace=@codeai-hub/core",
"compile": "npm run build:webview && npm run typecheck:webview && tsc -p .",
"test": "echo \"No automated tests defined yet\"",
"format:check": "echo \"format check script not configured yet\"",
"fetch:models": "npx tsx scripts/fetch-available-models.ts",
"prepare": "husky"
},
"keywords": [
"AI",
"assistant",
"multi-agent"
],
"directories": {
"doc": "doc"
},
"repository": {
"type": "git",
"url": "https://github.com/local/codeai-hub"
},
"devDependencies": {
"@google/gemini-cli": "^0.16.0",
"@google/gemini-cli-core": "^0.16.0",
"@types/node": "^22.7.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/vscode": "^1.85.0",
"esbuild": "^0.27.2",
"jscpd": "4.0.5",
"lefthook": "^1.13.6",
"markdown-link-check": "^3.14.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-prune": "0.10.3",
"typescript": "^5.6.3",
"zod-to-json-schema": "^3.24.6"
},
"dependencies": {
"@codeai-hub/core-supervisor": "file:packages/core-supervisor",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"ws": "^8.18.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"npx ultracite fix"
]
}
}