-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.6 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
{
"name": "mcode",
"version": "0.13.0",
"private": true,
"workspaces": [
"packages/*",
"apps/desktop",
"apps/web",
"apps/server"
],
"scripts": {
"deps:ensure": "bun scripts/agent/ensure-dependencies.mjs",
"postinstall": "bun scripts/postinstall.mjs",
"setup": "bun scripts/setup-env.mjs",
"install:electron": "bun scripts/ensure-electron.mjs",
"doctor": "bun scripts/doctor.mjs",
"dev": "bun run dev:web",
"dev:desktop": "cd apps/desktop && bun run dev",
"dev:web": "bun scripts/dev-web.mjs",
"dev:server": "bun scripts/dev-web.mjs --server-only",
"prod:desktop": "cd apps/desktop && bun run prod",
"build": "turbo run build",
"test": "turbo run test",
"lint": "bun run --cwd packages/oxlint-plugin build && oxlint",
"lint:architecture": "bun --bun dependency-cruiser apps packages",
"test:oxlint-plugin": "bun --cwd packages/oxlint-plugin test",
"lint:deadcode": "knip",
"typecheck": "turbo run typecheck",
"logs:tail": "bun scripts/logs-tail.mjs",
"state:paths": "bun scripts/state-paths.mjs",
"state:reset": "bun scripts/state-reset.mjs",
"db:info": "bun scripts/db-info.mjs",
"db:seed": "bun scripts/db-seed.mjs",
"perf:database": "bun apps/server/scripts/profile-sqlite.ts",
"certify:database": "bun apps/server/scripts/profile-sqlite.ts --certify",
"certify:conversation": "bun scripts/run-electron-node.mjs --workspace-cli vite-node dist/cli.mjs --config apps/web/vite.config.ts apps/web/scripts/certify-conversation-residency.ts",
"perf:frontend": "bun scripts/perf/run-frontend-performance.mjs",
"perf:frontend:packaged-windows": "bun scripts/perf/run-packaged-windows-acceleration.mjs",
"agent:setup": "bun scripts/agent/agent-setup.mjs",
"agent:up": "bun scripts/agent/agent-up.mjs",
"agent:ready": "bun scripts/agent/agent-ready.mjs",
"agent:down": "bun scripts/agent/agent-down.mjs",
"agent:reset": "bun scripts/agent/agent-reset.mjs",
"sync:cursor-models": "bun apps/server/scripts/sync-cursor-models-snapshot.ts",
"audit:baseline": "bun scripts/security/check-bun-audit-baseline.mjs",
"test:scripts": "bun scripts/agent/test-scripts.mjs"
},
"devDependencies": {
"@types/node": "^22.19.17",
"dependency-cruiser": "18.2.0",
"esbuild": "^0.27.7",
"knip": "^6.33.0",
"opensrc": "0.7.3",
"oxlint": "^1.80.0",
"turbo": "^2.5.0"
},
"packageManager": "bun@1.4.0",
"trustedDependencies": [
"electron",
"electron-mksnapshot",
"node-pty",
"@electron/rebuild"
],
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.212"
}
}