forked from apache/maka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 7.78 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 7.78 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
{
"name": "maka",
"version": "0.1.8",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=22.19.0"
},
"packageManager": "npm@11.12.1",
"type": "module",
"workspaces": [
"packages/code-mode",
"packages/core",
"packages/storage",
"packages/mcp",
"packages/runtime",
"packages/runtime-host",
"packages/computer-use",
"packages/headless",
"packages/cli",
"packages/ui",
"apps/desktop"
],
"scripts": {
"postinstall": "node scripts/apply-dependency-patches.mjs && install-electron",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run build:test && npm run test:scripts && node scripts/run-workspace-tests-parallel.mjs --concurrency=3",
"test:full": "npm run build:test && npm run test:scripts:full && node scripts/run-workspace-tests-parallel.mjs --concurrency=3",
"test:dist": "npm run test:scripts:full && node scripts/run-workspace-tests-parallel.mjs --concurrency=3",
"test:dist:serial": "npm run test:scripts:full && node scripts/run-workspace-tests-parallel.mjs --serial",
"test:fast": "npm run build:test && npm run test:scripts && node scripts/run-workspace-tests-parallel.mjs --concurrency=3",
"test:scripts": "node --test scripts/electron-builder-config.test.mjs scripts/sync-model-metadata.test.mjs scripts/fixture-env.test.mjs scripts/electron-lifecycle.test.mjs scripts/check-story-annotations.test.mjs scripts/check-dead-css.test.mjs scripts/check-astryx-alignment.test.mjs scripts/check-astryx-surface-inventory.test.mjs scripts/build-astryx-theme.test.mjs scripts/ci-test-plan.test.mjs scripts/run-headless-tests.test.mjs scripts/run-workspace-tests-parallel.test.mjs scripts/storybook-visual-smoke.test.mjs scripts/cu-e2e-scenarios.test.mjs scripts/cu-report-sanitize.test.mjs scripts/computer-use-provenance.test.mjs scripts/cu-trace-analyse.test.mjs scripts/prepare-bundled-git.test.mjs scripts/prepare-bundled-git-source.test.mjs scripts/bundled-skill-catalog.test.mjs scripts/windows-test-inventory.test.mjs scripts/windows-smoke.test.mjs scripts/windows-baseline-workflow.test.mjs scripts/code-mode-build-order.test.mjs scripts/dependency-audit-workflow.test.mjs apps/desktop/scripts/dev-app-runtime.test.mjs",
"test:scripts:extended": "node --test scripts/cu-provider-matrix.test.mjs scripts/cu-process-restart-harness.test.mjs scripts/cu-real-model-launcher.test.mjs scripts/macos-arm64-release.test.mjs scripts/windows-x64-release.test.mjs scripts/measure-session-bundle.test.mjs",
"test:scripts:full": "npm run test:scripts && npm run test:scripts:extended",
"dev": "npm --workspace @maka/desktop run dev:hmr --",
"dev:full": "npm run build && npm --workspace @maka/desktop run start",
"build": "npm --workspace @maka/code-mode run build && npm --workspace @maka/core run build && npm --workspace @maka/storage run build && npm --workspace @maka/mcp run build && npm --workspace @maka/runtime run build && npm --workspace @maka/runtime-host run build && npm --workspace @maka/computer-use run build && npm --workspace @maka/headless run build && npm --workspace maka-agent run build && npm --workspace @maka/ui run build && npm --workspace @maka/desktop run build",
"build:test": "npm run clean && npm --workspace @maka/code-mode run build && npm --workspace @maka/core run build && npm --workspace @maka/storage run build && npm --workspace @maka/mcp run build && npm --workspace @maka/runtime run build && npm --workspace @maka/runtime-host run build && npm --workspace @maka/computer-use run build && npm --workspace @maka/headless run build && npm --workspace maka-agent run build && npm --workspace @maka/ui run build && npm --workspace @maka/desktop run build:test",
"clean": "node scripts/clean-build.mjs",
"rebuild": "npm run clean && npm run build",
"check:stale": "node scripts/check-stale-dist.mjs",
"generate:third-party-notices": "node scripts/generate-third-party-notices.mjs",
"check:third-party-notices": "node scripts/generate-third-party-notices.mjs --check",
"check:release": "npm run check:stale && npm run check:third-party-notices && node scripts/check-dead-css.mjs --check",
"package:macos-arm64": "node scripts/package-macos-arm64.mjs",
"verify:macos-arm64": "node scripts/verify-macos-arm64-dmg.mjs",
"package:windows-x64": "node scripts/package-windows-x64.mjs",
"verify:windows-x64": "node scripts/verify-windows-x64.mjs",
"measure:session-bundle": "node scripts/measure-session-bundle.mjs",
"astryx:theme": "node scripts/build-astryx-theme.mjs",
"sync:model-metadata": "node scripts/sync-model-metadata.mjs",
"generate:bundled-skills": "node scripts/gen-bundled-skill-catalog.mjs",
"cost:deepseek-baseline": "node scripts/deepseek-live-cost-baseline.mjs",
"benchmark:kimi-protocol-ab": "node packages/headless/harbor/run-kimi-protocol-ab.mjs",
"prepare:maka-cu": "node scripts/prepare-maka-cu.mjs",
"windows:inventory": "node scripts/windows-test-inventory.mjs --check",
"windows:inventory:write": "node scripts/windows-test-inventory.mjs --write",
"smoke:windows": "npm run build && node scripts/windows-smoke.mjs",
"prepare:bundled-git": "node scripts/prepare-bundled-git.mjs",
"prepare:bundled-git-source": "node scripts/prepare-bundled-git-source.mjs",
"e2e:computer-use-real": "node scripts/cu-real-ax-model-e2e-launcher.mjs",
"e2e:computer-use-process-restart": "MAKA_CU_AX_MODEL_SCENARIO=restart-recovery node scripts/cu-real-ax-model-e2e-launcher.mjs",
"e2e:computer-use-process-restart-soak": "node scripts/cu-process-restart-e2e-launcher.mjs",
"e2e:computer-use-real-model": "node scripts/cu-real-model-launcher.mjs",
"e2e:computer-use-real-ax-model": "node scripts/cu-real-ax-model-e2e-launcher.mjs",
"e2e:computer-use-real-ax-observe": "MAKA_CU_AX_MODEL_SCENARIO=observe-only node scripts/cu-real-ax-model-e2e-launcher.mjs",
"e2e:computer-use-real-ax-recovery": "MAKA_CU_AX_MODEL_SCENARIO=intervention-recovery node scripts/cu-real-ax-model-e2e-launcher.mjs",
"e2e:computer-use-real-ax-restart": "MAKA_CU_AX_MODEL_SCENARIO=restart-recovery node scripts/cu-real-ax-model-e2e-launcher.mjs",
"e2e:computer-use-real-ax-anthropic": "MAKA_CU_MODEL_PROVIDER=anthropic node scripts/cu-real-ax-model-e2e-launcher.mjs",
"e2e:computer-use-real-ax-anthropic-recovery": "MAKA_CU_MODEL_PROVIDER=anthropic MAKA_CU_AX_MODEL_SCENARIO=intervention-recovery node scripts/cu-real-ax-model-e2e-launcher.mjs",
"e2e:computer-use-real-ax-click": "MAKA_CU_AX_MODEL_SCENARIO=ax-click node scripts/cu-real-ax-model-e2e-launcher.mjs",
"e2e:computer-use-real-ax-ambiguity": "MAKA_CU_AX_MODEL_SCENARIO=ambiguity node scripts/cu-real-ax-model-e2e-launcher.mjs",
"e2e:computer-use-real-ax-multi-step": "MAKA_CU_AX_MODEL_SCENARIO=ax-multi-step node scripts/cu-real-ax-model-e2e-launcher.mjs",
"e2e:computer-use-real-ax-anthropic-multi-step": "MAKA_CU_MODEL_PROVIDER=anthropic MAKA_CU_AX_MODEL_SCENARIO=ax-multi-step node scripts/cu-real-ax-model-e2e-launcher.mjs",
"e2e:computer-use-function-model": "node scripts/cu-real-function-model-e2e.mjs",
"e2e:computer-use-real-anthropic": "node scripts/cu-real-anthropic-model-e2e.mjs",
"e2e:computer-use-real-runtime": "node scripts/cu-real-runtime-model-e2e.mjs"
},
"devDependencies": {
"@astryxdesign/cli": "0.3.0",
"@astryxdesign/core": "0.3.0",
"@biomejs/biome": "2.5.6",
"@types/node": "^26.1.2",
"dugite": "3.2.2",
"knip": "^6.26.0",
"patch-package": "8.0.1",
"typescript": "^7.0.2"
},
"allowScripts": {
"esbuild@0.27.7": true,
"@jackwener/opencli@1.8.4": true,
"dugite@3.2.2": true,
"node-pty@1.2.0-beta.14": true
},
"overrides": {
"@astryxdesign/core": {
"react-dom": "19.2.8"
}
}
}