-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.26 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.26 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
119
120
121
122
123
124
125
{
"name": "conflux",
"private": true,
"version": "0.1.0",
"description": "A2A Agent Aggregation Platform",
"main": "out/main/index.js",
"type": "module",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"build:dist": "electron-vite build && electron-builder",
"postinstall": "electron-rebuild -f -w better-sqlite3",
"lint": "biome check --write .",
"lint:check": "biome check .",
"format": "biome format --write .",
"format:check": "biome format .",
"preview": "electron-vite preview"
},
"dependencies": {
"@a2a-js/sdk": "^0.3.4",
"@anthropic-ai/claude-agent-sdk": "^0.2.19",
"@base-ui/react": "^1.1.0",
"@codemirror/commands": "^6.10.1",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/language": "^6.12.1",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.11",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@hugeicons/core-free-icons": "^3.1.1",
"@hugeicons/react": "^1.1.4",
"@openai/codex-sdk": "^0.91.0",
"@parcel/watcher": "^2.5.6",
"@radix-ui/react-accordion": "^1.2.12",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/react-router": "^1.157.9",
"@types/express": "^5.0.6",
"better-sqlite3": "^12.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"codex-a2a": "^0.1.2",
"express": "^5.2.1",
"lucide-react": "^0.563.0",
"marked": "^17.0.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"shadcn": "^3.7.0",
"shiki": "^3.21.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.17",
"tw-animate-css": "^1.4.0",
"use-stick-to-bottom": "^1.1.2",
"zustand": "^5.0.10"
},
"devDependencies": {
"@biomejs/biome": "^2.3.12",
"@electron-toolkit/utils": "^4.0.0",
"@electron/rebuild": "^4.0.2",
"@google/gemini-cli-a2a-server": "^0.25.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"electron": "^40.0.0",
"electron-builder": "^26.4.0",
"electron-vite": "^5.0.0",
"typescript": "~5.9.3",
"vite": "^7.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"better-sqlite3",
"electron",
"electron-winstaller",
"esbuild",
"keytar",
"msw",
"node-pty",
"protobufjs",
"tree-sitter-bash"
]
},
"build": {
"appId": "com.xuan.conflux",
"productName": "Conflux",
"directories": {
"output": "release"
},
"files": [
"out/**/*"
],
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "public/icon.icns"
},
"win": {
"target": [
"nsis",
"zip"
],
"icon": "public/icon.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "public/icon.png"
}
}
}