-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.35 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 4.35 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
{
"name": "open-cowork",
"version": "0.9.4",
"description": "Open-source desktop platform for multi-agent AI collaboration with local tools and workplace integration",
"main": "./out/main/index.js",
"author": "example.com",
"homepage": "https://electron-vite.org",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"build:sidecar": "powershell -ExecutionPolicy Bypass -File ./scripts/build-sidecar.ps1",
"build:sidecar:win": "powershell -ExecutionPolicy Bypass -File ./scripts/build-sidecar.ps1 -Runtime win-x64",
"build:sidecar:mac": "powershell -ExecutionPolicy Bypass -File ./scripts/build-sidecar.ps1 -Runtime osx-arm64",
"build:sidecar:linux": "powershell -ExecutionPolicy Bypass -File ./scripts/build-sidecar.ps1 -Runtime linux-x64",
"benchmark:sidecar": "dotnet run --project ./src/dotnet/OpenCowork.Agent -- benchmark",
"postinstall": "node ./scripts/postinstall.mjs",
"build:unpack": "npm run build && npm run build:sidecar && electron-builder --dir",
"build:win": "npm run build && npm run build:sidecar:win && electron-builder --win",
"build:mac": "electron-vite build && npm run build:sidecar:mac && electron-builder --mac",
"build:linux": "electron-vite build && npm run build:sidecar:linux && electron-builder --linux"
},
"dependencies": {
"@base-ui/react": "^1.1.0",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@jitsi/robotjs": "^0.6.21",
"@larksuiteoapi/node-sdk": "^1.59.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@toon-format/toon": "^2.1.0",
"@types/archiver": "^7.0.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-unicode11": "0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"archiver": "^7.0.1",
"ast-types": "0.16.1",
"better-sqlite3": "^12.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dingtalk-stream": "^2.1.4",
"docx": "^9.6.1",
"electron-updater": "^6.3.9",
"glob": "^13.0.1",
"gpt-tokenizer": "^3.4.0",
"html-to-image": "^1.11.13",
"https-proxy-agent": "^7.0.6",
"i18next": "^25.8.6",
"immer": "^11.1.3",
"lucide-react": "^0.563.0",
"mammoth": "^1.11.0",
"mermaid": "^11.12.3",
"monaco-editor": "^0.55.1",
"motion": "^12.34.0",
"nanoid": "^5.1.6",
"next-themes": "^0.4.6",
"node-cron": "^3.0.3",
"node-pty": "^1.1.0",
"omggif": "^1.0.10",
"partial-json": "^0.1.7",
"radix-ui": "^1.4.3",
"react-i18next": "^16.5.4",
"react-is": "^19.2.4",
"react-markdown": "^10.1.0",
"react-pdf": "^10.3.0",
"react-syntax-highlighter": "^16.1.0",
"recharts": "^3.8.1",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"ssh2": "^1.17.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"ws": "^8.19.0",
"xlsx": "^0.18.5",
"zustand": "^5.0.11"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.19.1",
"@types/node-cron": "^3.0.11",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/ssh2": "^1.15.5",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^5.1.1",
"electron": "^36.9.5",
"electron-builder": "^26.3.3",
"electron-vite": "^5.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"prettier": "^3.7.4",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"typescript": "^5.9.3",
"vite": "^7.2.6"
},
"overrides": {
"cpu-features": "npm:noop2@1.0.0"
}
}