-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.68 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
{
"name": "coding-orchestrator",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "dist/electron/main.js",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "tsx watch --env-file-if-exists=.env.local server/index.ts",
"dev:client": "vite",
"dev:electron": "npm run build:electron-runtime && concurrently -k \"npm run dev:server\" \"npm run dev:client\" \"node electron/wait-and-launch.mjs\"",
"build": "vite build && tsc -p server/tsconfig.json && node cli/copy-cli.mjs && npm run build:electron-runtime",
"build:electron-runtime": "tsc -p electron/tsconfig.json && npm run build:electron-assets",
"build:electron-assets": "node electron/copy-assets.mjs",
"package:electron": "npm run build && electron-builder --dir",
"test": "node --import tsx --test 'server/lib/__tests__/**/*.test.ts' 'client/src/lib/**/*.test.ts' 'client/src/components/__tests__/**/*.test.tsx' 'cli/__tests__/**/*.test.mjs'"
},
"build": {
"appId": "com.germanescobar.controller",
"productName": "Controller",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"build/**/*",
"package.json"
],
"asarUnpack": [
"node_modules/node-pty/**/*",
"dist/electron/**/*",
"dist/cli/**/*"
],
"mac": {
"icon": "build/icon.icns",
"target": [
"dir"
]
}
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@fontsource-variable/geist": "^5.2.8",
"@tailwindcss/typography": "^0.5.19",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"diff": "^9.0.0",
"express": "^5.1.0",
"highlight.js": "^11.11.1",
"lucide-react": "^1.7.0",
"next-themes": "^0.4.6",
"node-pty": "^1.2.0-beta.12",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"shadcn": "^4.1.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"uuid": "^11.1.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@types/cors": "^2.8.17",
"@types/diff": "^7.0.2",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.3.0",
"concurrently": "^9.0.0",
"electron": "^42.3.0",
"electron-builder": "^26.8.1",
"tailwindcss": "^4.0.0",
"tsx": "^4.22.4",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"wait-on": "^9.0.10"
}
}