-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
150 lines (150 loc) · 5.79 KB
/
package.json
File metadata and controls
150 lines (150 loc) · 5.79 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "lightcode",
"version": "1.0.1",
"private": true,
"description": "The universal desktop orchestrator for AI agents. Run terminal-native and structured chat agents side-by-side.",
"homepage": "https://www.lightcodeapp.com/",
"license": "Apache-2.0",
"author": "SDSLeon",
"repository": {
"type": "git",
"url": "https://github.com/SDSLeon/lightcode"
},
"type": "module",
"main": "dist/main/main.cjs",
"scripts": {
"postinstall": "electron-rebuild --only better-sqlite3 && node scripts/ensure-native-deps.mjs",
"setup:native": "electron-rebuild --only better-sqlite3 && node scripts/ensure-native-deps.mjs",
"dev": "concurrently -k -n renderer,electron,app -c cyan,magenta,yellow \"pnpm run dev:renderer\" \"pnpm run dev:electron\" \"pnpm run dev:app\"",
"website:dev": "pnpm --dir website dev",
"website:build": "pnpm --dir website build",
"website:start": "pnpm --dir website start",
"dev:renderer": "node scripts/free-port.mjs 3100 && vite",
"dev:electron": "tsdown --watch",
"dev:app": "pnpm run setup:native && pnpm run prepare:package-assets && wait-on tcp:3100 dist/main/main.cjs && node scripts/dev-launch.mjs",
"build": "pnpm run build:renderer && pnpm run build:electron",
"build:renderer": "vite build",
"build:electron": "cross-env NODE_ENV=production tsdown",
"start": "pnpm run setup:native && electron .",
"prepare:wsl-helpers": "node scripts/prepare-wsl-helpers.mjs",
"prepare:agent-plugins": "node scripts/prepare-agent-plugins.mjs",
"prepare:package-assets": "pnpm run prepare:wsl-helpers && pnpm run prepare:agent-plugins",
"sentry:sourcemaps": "node scripts/sentry-sourcemaps.mjs",
"clean:sourcemaps": "node scripts/clean-sourcemaps.mjs",
"dist": "node scripts/build-desktop-artifact.mjs",
"dist:win": "node scripts/build-desktop-artifact.mjs --platform win --target nsis --arch x64",
"dist:win:all": "node scripts/build-desktop-artifact.mjs --platform win",
"dist:linux": "node scripts/build-desktop-artifact.mjs --platform linux",
"dist:mac": "node scripts/build-desktop-artifact.mjs --platform mac",
"dist:mac:arm": "node scripts/build-desktop-artifact.mjs --platform mac --target dmg --arch arm64",
"typecheck": "pnpm exec tsgo --noEmit -p tsconfig.json",
"typecheck:compat": "tsc --noEmit -p tsconfig.json",
"lint": "oxlint --type-aware --deny-warnings .",
"lint:fix": "oxlint --type-aware --fix .",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check .",
"test": "vitest run",
"test:perf:cli-hook": "vitest run src/supervisor/runtime/cliHookEventChain.perf.test.ts",
"update-server": "node scripts/update-server.mjs",
"db:clone": "node scripts/clone-db.mjs",
"prepare": "husky"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.21.1",
"@anthropic-ai/claude-agent-sdk": "^0.3.142",
"@chenglou/pretext": "^0.0.6",
"@dnd-kit/abstract": "^0.4.0",
"@dnd-kit/collision": "^0.4.0",
"@dnd-kit/dom": "^0.4.0",
"@dnd-kit/geometry": "^0.4.0",
"@dnd-kit/react": "^0.4.0",
"@dnd-kit/state": "^0.4.0",
"@git-diff-view/core": "^0.1.3",
"@git-diff-view/react": "^0.1.3",
"@heroui/react": "^3.0.3",
"@heroui/styles": "^3.0.3",
"@monaco-editor/react": "^4.7.0",
"@opencode-ai/sdk": "^1.14.48",
"@sentry/electron": "^7.13.0",
"@sentry/node": "10.50.0",
"@tanstack/react-virtual": "^3.13.24",
"@xterm/addon-clipboard": "0.3.0-beta.219",
"@xterm/addon-fit": "0.12.0-beta.219",
"@xterm/addon-image": "0.10.0-beta.219",
"@xterm/addon-search": "0.17.0-beta.219",
"@xterm/addon-unicode11": "0.10.0-beta.219",
"@xterm/addon-web-links": "0.13.0-beta.219",
"@xterm/addon-webgl": "0.20.0-beta.218",
"@xterm/xterm": "6.1.0-beta.219",
"better-sqlite3": "^12.9.0",
"drizzle-orm": "1.0.0-rc.1",
"electron-updater": "^6.8.3",
"lucide-react": "^1.14.0",
"material-icon-theme": "^5.34.0",
"micromatch": "^4.0.8",
"monaco-editor": "^0.55.1",
"node-pty": "^1.1.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^4.0.2",
"streamdown": "^2.5.0",
"tailwindcss": "^4.2.4",
"vscode-jsonrpc": "^8.2.1",
"vscode-languageserver-protocol": "^3.17.5",
"zod": "^4.4.2",
"zustand": "^5.0.12"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@electron/rebuild": "^4.0.4",
"@rolldown/plugin-babel": "^0.2.3",
"@sentry/cli": "^3.4.2",
"@tailwindcss/postcss": "^4.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.13",
"@types/micromatch": "^4.0.9",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260501.1",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "1.0.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"drizzle-kit": "1.0.0-rc.1",
"electron": "41.7.0",
"electron-builder": "^26.8.1",
"electronmon": "^2.0.4",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.4",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"oxlint-tsgolint": "^0.22.1",
"postcss": "^8.5.13",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5",
"wait-on": "^9.0.4"
},
"engines": {
"node": ">=24.10.0"
},
"packageManager": "pnpm@11.2.2+sha512.36e6621fad506178936455e70247b8808ef4ec25797a9f437a93281a020484e2607f6a469a22e982987c3dbb8866e3071514ab10a4a1749e06edcd1ec118436f",
"electronmon": {
"patterns": [
"!src/**",
"!dist/renderer/**",
"!build/**",
"!release/**",
"!.agents/**",
"!.heroui-docs/**",
"!scripts/**"
]
}
}