-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3.02 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
{
"name": "nexus-code",
"productName": "NexusCode",
"version": "0.7.1",
"description": "Multi-workspace VSCode-style editor for macOS. Monaco editor + terminal in one window.",
"license": "MIT",
"private": true,
"main": "out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"dev:fresh": "bun run clean && bun run scripts/build-agent.ts && electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"typecheck": "tsc -b tsconfig.json",
"lint": "biome lint . && bun run lint:tw",
"lint:tw": "bun run scripts/check-tailwind-syntax.ts && bun run scripts/check-off-grid-spacing.ts && bun run scripts/check-typography-roles.ts",
"format": "biome format --write .",
"check": "biome check --write .",
"check:ci": "biome check . && bun run lint:tw",
"clean": "rm -rf out dist *.tsbuildinfo",
"postinstall": "electron-rebuild -f -w node-pty,better-sqlite3",
"test": "bun test tests/unit tests/integration",
"test:unit": "bun test tests/unit/",
"test:integration": "bun test tests/integration/",
"package:mac": "bun run scripts/build-agent.ts && electron-vite build && electron-builder --mac dmg zip --arm64 --publish never",
"package:mac:current": "bun run scripts/build-agent.ts && electron-vite build && electron-builder --mac dmg --publish never",
"gen:icons": "bun run scripts/generate-material-icons.ts"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/vite": "^4.2.4",
"@tanstack/react-virtual": "^3.13.24",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-ligatures": "^0.10.0",
"@xterm/xterm": "^6.0.0",
"basedpyright": "1.39.5",
"better-sqlite3": "^12.9.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"culori": "^4.0.2",
"electron-log": "^5.4.4",
"i18next": "^26.3.0",
"lucide-react": "^1.14.0",
"node-pty": "^1.1.0",
"radix-ui": "1.4.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-i18next": "^17.0.8",
"react-markdown": "^9",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4",
"semver": "^7.6.3",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.4",
"tm-grammars": "^1.31.15",
"typescript-language-server": "^5.1.3",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.3.2",
"zod": "^3.25.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@electron/rebuild": "^4.0.4",
"@types/better-sqlite3": "^7.6.13",
"@types/culori": "^4.0.1",
"@types/node": "^22.15.3",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"@types/semver": "^7.5.8",
"@vitejs/plugin-react": "^4.5.2",
"electron": "^41.5.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"material-icon-theme": "^5.35.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-svgr": "^5.2.0"
}
}