-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.58 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.58 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
{
"name": "oagent",
"version": "0.1.1",
"productName": "OAgent",
"description": "OAgent desktop client for agentic development workflows",
"author": {
"name": "Dejan Zegarac",
"email": "dejanzegarac3@gmail.com"
},
"main": "electron/dist/main.js",
"scripts": {
"build:electron": "tsup --config tsup.electron.config.ts",
"dev": "concurrently \"vite\" \"pnpm build:electron --watch\" \"sleep 3 && electron .\"",
"build": "pnpm build:electron && vite build",
"start": "electron .",
"dist": "pnpm build && electron-builder --config electron-builder.config.js",
"dist:mac": "pnpm build && electron-builder --mac --config electron-builder.config.js",
"dist:win": "pnpm build && electron-builder --win --config electron-builder.config.js",
"dist:linux": "pnpm build && electron-builder --linux --config electron-builder.config.js"
},
"packageManager": "pnpm@10.26.0",
"dependencies": {
"@agentclientprotocol/sdk": "^0.14.1",
"@anthropic-ai/claude-agent-sdk": "^0.2.42",
"@modelcontextprotocol/sdk": "^1.27.1",
"@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",
"diff": "^8.0.3",
"electron-liquid-glass": "^1.1.1",
"electron-updater": "^6.8.3",
"lucide-react": "^0.563.0",
"node-pty": "^1.1.0",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-syntax-jsx": "^7.28.6",
"@babel/preset-react": "^7.28.5",
"@electron/rebuild": "^4.0.3",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.1.4",
"babel-plugin-react-compiler": "^1.0.0",
"concurrently": "^9.2.1",
"electron": "^40.4.0",
"electron-builder": "^26.8.1",
"shadcn": "^3.8.4",
"tailwindcss": "^4.1.18",
"tsup": "^8.5.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"license": "MIT",
"private": false,
"homepage": "https://github.com/samhu1/openagent",
"repository": {
"type": "git",
"url": "https://github.com/samhu1/openagent.git"
},
"bugs": {
"url": "https://github.com/samhu1/openagent/issues"
},
"pnpm": {
"overrides": {
"ajv@<6.14.0": "^6.14.0"
}
}
}