-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.63 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.63 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
{
"name": "opengui",
"version": "0.1.11",
"description": "OpenGUI - A graphical interface for OpenCode",
"author": {
"name": "Emmanuel",
"email": "emmanuel@akemsoft.com"
},
"homepage": "https://github.com/akemmanuel/OpenGUI",
"private": false,
"license": "MIT",
"type": "module",
"main": "main.cjs",
"scripts": {
"dev": "concurrently -k \"bun --hot src/index.ts\" \"wait-on http://localhost:3000 && BUN_DEV_SERVER_URL=http://localhost:3000 bunx electron .\"",
"dev:web": "bun --hot src/index.ts",
"start": "NODE_ENV=production bun src/index.ts",
"start:electron": "NODE_ENV=production bunx electron .",
"build": "bun run build.ts",
"dist": "bunx electron-builder --linux deb",
"dist:mac": "bunx electron-builder --mac dmg",
"dist:mac:arm64": "bunx electron-builder --mac dmg --arm64",
"typecheck": "bunx tsc --noEmit",
"lint": "bunx --bun biome check --write",
"lint:check": "bunx --bun biome check",
"format": "bunx --bun biome format --write"
},
"build": {
"appId": "com.opengui.app",
"productName": "OpenGUI",
"compression": "maximum",
"asar": true,
"linux": {
"target": "deb",
"icon": "assets/icon.png",
"category": "Development"
},
"mac": {
"target": "dmg",
"icon": "assets/icon.icns",
"category": "public.app-category.developer-tools",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"identity": null
},
"dmg": {
"icon": "assets/icon.icns"
},
"files": [
"dist/**/*",
"!dist/**/*.map",
"main.cjs",
"preload.cjs",
"opencode-bridge.mjs",
"package.json",
"!node_modules",
"node_modules/@opencode-ai/sdk/dist/**/*.js",
"node_modules/@opencode-ai/sdk/package.json"
],
"directories": {
"output": "release"
},
"nodeGypRebuild": false,
"npmRebuild": false
},
"dependencies": {
"@opencode-ai/sdk": "^1.2.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"katex": "^0.16.33",
"lucide-react": "^0.564.0",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"shiki": "^3.23.0",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.15",
"@types/bun": "^1.3.10",
"bun-plugin-tailwind": "^0.1.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"concurrently": "^9.2.1",
"electron": "^40.6.1",
"electron-builder": "^26.8.1",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0",
"wait-on": "^9.0.4"
}
}