-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.57 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.57 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
{
"name": "codez",
"version": "2.10.2",
"productName": "Codez",
"description": "A macOS desktop app for managing AI coding agent sessions across git worktrees.",
"author": "Daniel Klevebring",
"main": "dist/main/main/index.js",
"scripts": {
"dev": "npm run rebuild:electron && npm run build:main && concurrently -k -n main,renderer,electron -c blue,green,yellow \"npm run dev:main\" \"npm run dev:renderer\" \"npm run dev:electron\"",
"dev:main": "tsc -p tsconfig.main.json -w",
"dev:renderer": "vite",
"dev:electron": "wait-on tcp:5174 && electron .",
"build:main": "tsc -p tsconfig.main.json",
"build:renderer": "vite build",
"build": "npm run build:main && npm run build:renderer",
"postinstall": "npx @electron/rebuild --force",
"rebuild:node": "npm rebuild better-sqlite3",
"rebuild:electron": "npx @electron/rebuild --force",
"test": "npm run rebuild:node && vitest run",
"test:watch": "npm run rebuild:node && vitest",
"test:e2e": "npm run rebuild:electron && npm run build && npx playwright test",
"screenshots": "npm run rebuild:electron && npm run build && npx playwright test e2e/screenshots.spec.ts",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"better-sqlite3": "^12.6.2",
"electron-log": "^5.4.3",
"electron-updater": "^6.8.3",
"font-list": "^2.0.2",
"node-pty": "^1.0.0",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@electron/notarize": "^3.1.1",
"@electron/rebuild": "^4.0.3",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"concurrently": "^8.2.2",
"electron": "^40.4.1",
"electron-builder": "^26.7.0",
"happy-dom": "^20.8.9",
"jsdom": "^29.0.1",
"postcss": "^8.4.33",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.1.18",
"typescript": "~5.7.0",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"wait-on": "^7.2.0",
"zustand": "^5.0.11"
}
}