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
88 lines (88 loc) · 4.42 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 4.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
{
"name": "maka",
"version": "0.1.10",
"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/eval",
"packages/computer-use",
"packages/cli",
"packages/ui",
"apps/desktop"
],
"scripts": {
"postinstall": "node scripts/apply-dependency-patches.mjs && node scripts/install-electron-with-retry.mjs",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run build:test && node scripts/run-workspace-tests-parallel.mjs --concurrency=3",
"test:dist": "node scripts/run-workspace-tests-parallel.mjs --concurrency=3",
"test:dist:serial": "node scripts/run-workspace-tests-parallel.mjs --serial",
"dev": "npm --workspace @maka/desktop run dev:hmr --",
"dev:full": "npm run build && npm --workspace @maka/desktop run start",
"cli:dev": "node packages/cli/dist/dev-cli.js",
"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/eval 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/eval 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",
"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",
"verify:windows-installer": "node scripts/verify-windows-installer-lifecycle.mjs",
"astryx:theme": "node scripts/build-astryx-theme.mjs",
"astryx:surface-inventory": "node scripts/check-astryx-surface-inventory.mjs",
"astryx:surface-inventory:write": "node scripts/generate-astryx-surface-inventory.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",
"computer-use": "node scripts/computer-use.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 && npm run smoke:windows:dist",
"smoke:windows:dist": "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"
},
"devDependencies": {
"@ai-sdk/provider-utils": "5.0.27",
"@astryxdesign/cli": "0.4.0",
"@astryxdesign/core": "0.4.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.15": true
},
"overrides": {
"@astryxdesign/core": {
"react-dom": "19.2.8"
},
"@modelcontextprotocol/sdk": {
"@hono/node-server": "2.0.12"
}
}
}