brosh 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.github.md +193 -0
- package/README.md +18 -141
- package/README.npm.md +58 -0
- package/package.json +5 -3
- package/packages/desktop-electron/build/afterInstall-linux.sh +4 -0
- package/packages/desktop-electron/build/entitlements.mac.inherit.plist +12 -0
- package/packages/desktop-electron/build/entitlements.mac.plist +14 -0
- package/packages/desktop-electron/package-lock.json +46 -40
- package/packages/desktop-electron/package.json +20 -4
- package/packaging/aur/.SRCINFO +20 -0
- package/packaging/aur/PKGBUILD +26 -0
- package/website/CNAME +1 -0
- package/website/assets/images/.gitkeep +0 -0
- package/website/assets/videos/.gitkeep +0 -0
- package/website/css/styles.css +735 -0
- package/website/gpg.key +37 -0
- package/website/index.html +314 -0
- package/website/install.sh.asc +16 -0
- package/website/js/main.js +293 -0
- package/website/uninstall.sh +5 -0
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "brosh-desktop",
|
|
3
3
|
"productName": "brosh",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"description": "Desktop GUI for brosh - A terminal emulator with MCP support",
|
|
6
|
-
"author":
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Ellery Familia",
|
|
8
|
+
"email": "ellery@elleryfamilia.com"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/elleryfamilia/brosh",
|
|
7
11
|
"license": "MIT",
|
|
8
12
|
"main": "dist/main/index.js",
|
|
9
13
|
"type": "module",
|
|
@@ -58,6 +62,7 @@
|
|
|
58
62
|
"electron-store": "^10.0.0",
|
|
59
63
|
"electron-updater": "^6.7.3",
|
|
60
64
|
"fastest-levenshtein": "^1.0.16",
|
|
65
|
+
"material-file-icons": "^2.4.0",
|
|
61
66
|
"monaco-editor": "^0.55.1",
|
|
62
67
|
"monaco-vim": "^0.4.4",
|
|
63
68
|
"posthog-node": "^5.24.7",
|
|
@@ -72,7 +77,7 @@
|
|
|
72
77
|
"@vitejs/plugin-react": "^4.2.0",
|
|
73
78
|
"@vitest/coverage-v8": "^2.0.0",
|
|
74
79
|
"concurrently": "^8.2.0",
|
|
75
|
-
"electron": "^33.
|
|
80
|
+
"electron": "^33.4.11",
|
|
76
81
|
"electron-builder": "^25.0.0",
|
|
77
82
|
"react": "^18.2.0",
|
|
78
83
|
"react-dom": "^18.2.0",
|
|
@@ -154,6 +159,11 @@
|
|
|
154
159
|
"target": "zip"
|
|
155
160
|
}
|
|
156
161
|
],
|
|
162
|
+
"hardenedRuntime": true,
|
|
163
|
+
"gatekeeperAssess": false,
|
|
164
|
+
"entitlements": "build/entitlements.mac.plist",
|
|
165
|
+
"entitlementsInherit": "build/entitlements.mac.inherit.plist",
|
|
166
|
+
"notarize": true,
|
|
157
167
|
"extendInfo": {
|
|
158
168
|
"NSSupportsAutomaticTermination": false,
|
|
159
169
|
"NSSupportsSuddenTermination": false
|
|
@@ -166,7 +176,13 @@
|
|
|
166
176
|
"linux": {
|
|
167
177
|
"icon": "resources/icons/png",
|
|
168
178
|
"category": "Development",
|
|
169
|
-
"target": [
|
|
179
|
+
"target": [
|
|
180
|
+
"deb"
|
|
181
|
+
],
|
|
182
|
+
"executableName": "brosh"
|
|
183
|
+
},
|
|
184
|
+
"deb": {
|
|
185
|
+
"afterInstall": "build/afterInstall-linux.sh"
|
|
170
186
|
}
|
|
171
187
|
}
|
|
172
188
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
pkgbase = brosh-bin
|
|
2
|
+
pkgdesc = AI-native terminal built for Claude coders
|
|
3
|
+
pkgver = 0.1.0
|
|
4
|
+
pkgrel = 1
|
|
5
|
+
url = https://github.com/elleryfamilia/brosh
|
|
6
|
+
arch = x86_64
|
|
7
|
+
arch = aarch64
|
|
8
|
+
license = MIT
|
|
9
|
+
depends = gtk3
|
|
10
|
+
depends = nss
|
|
11
|
+
depends = libxss
|
|
12
|
+
depends = alsa-lib
|
|
13
|
+
provides = brosh
|
|
14
|
+
conflicts = brosh
|
|
15
|
+
source_x86_64 = https://github.com/elleryfamilia/brosh/releases/download/v0.1.0/brosh_0.1.0_amd64.deb
|
|
16
|
+
source_aarch64 = https://github.com/elleryfamilia/brosh/releases/download/v0.1.0/brosh_0.1.0_arm64.deb
|
|
17
|
+
sha256sums_x86_64 = SKIP
|
|
18
|
+
sha256sums_aarch64 = SKIP
|
|
19
|
+
|
|
20
|
+
pkgname = brosh-bin
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Maintainer: Ellery Familia <ellery@elleryfamilia.com>
|
|
2
|
+
pkgname=brosh-bin
|
|
3
|
+
pkgver=0.1.0
|
|
4
|
+
pkgrel=1
|
|
5
|
+
pkgdesc="AI-native terminal built for Claude coders"
|
|
6
|
+
arch=('x86_64' 'aarch64')
|
|
7
|
+
url="https://github.com/elleryfamilia/brosh"
|
|
8
|
+
license=('MIT')
|
|
9
|
+
depends=('gtk3' 'nss' 'libxss' 'alsa-lib')
|
|
10
|
+
provides=('brosh')
|
|
11
|
+
conflicts=('brosh')
|
|
12
|
+
source_x86_64=("${url}/releases/download/v${pkgver}/brosh_${pkgver}_amd64.deb")
|
|
13
|
+
source_aarch64=("${url}/releases/download/v${pkgver}/brosh_${pkgver}_arm64.deb")
|
|
14
|
+
sha256sums_x86_64=('SKIP')
|
|
15
|
+
sha256sums_aarch64=('SKIP')
|
|
16
|
+
|
|
17
|
+
package() {
|
|
18
|
+
bsdtar -xf data.tar.* -C "$pkgdir/"
|
|
19
|
+
|
|
20
|
+
# Fix permissions
|
|
21
|
+
find "$pkgdir" -type d -exec chmod 755 {} +
|
|
22
|
+
|
|
23
|
+
# Install license
|
|
24
|
+
install -Dm644 "$pkgdir/usr/share/doc/brosh/copyright" \
|
|
25
|
+
"$pkgdir/usr/share/licenses/$pkgname/LICENSE" 2>/dev/null || true
|
|
26
|
+
}
|
package/website/CNAME
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bro.sh
|
|
File without changes
|
|
File without changes
|