-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (36 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (36 loc) · 1.67 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
{
"name": "codehelper-workspace",
"version": "3.0.3",
"private": true,
"license": "BUSL-1.1",
"description": "Root build orchestrator for the codehelper Go CLI + MCP. Works on Linux, macOS, and Windows. VS Code extension lives on the vscode-extension branch.",
"engines": {
"node": ">=18"
},
"scripts": {
"install": "node scripts/install-full.mjs",
"build": "npm run build:go",
"build:cli": "node scripts/build-go.mjs codehelper",
"build:mcp": "node scripts/build-go.mjs codehelper-mcp",
"build:go": "npm run build:cli && npm run build:mcp",
"build:modules:core": "node scripts/build-modules.mjs core",
"build:modules:edit": "node scripts/build-modules.mjs core,edit",
"build:modules:check": "node scripts/build-modules.mjs core,check",
"build:modules:browser": "node scripts/build-modules.mjs core,browser",
"build:modules:ops": "node scripts/build-modules.mjs core,ops",
"build:modules:dev": "node scripts/build-modules.mjs core,edit,check,browser,ops",
"test:modules": "node scripts/test-modules.mjs",
"install:cli": "node scripts/install-go.mjs codehelper",
"install:mcp": "node scripts/install-go.mjs codehelper-mcp",
"install:go": "npm run install:cli && npm run install:mcp",
"update:cli": "npm run build:cli && npm run install:cli",
"update:mcp": "npm run build:mcp && npm run install:mcp",
"update:go": "npm run build:go && npm run install:go",
"update:all": "npm run update:go",
"build:all": "npm run update:go",
"clean:bin": "node scripts/clean.mjs bin",
"clean": "npm run clean:bin",
"share": "node scripts/package-share.mjs",
"release": "node scripts/release.mjs"
}
}