Skip to content
This repository was archived by the owner on Aug 6, 2026. It is now read-only.

Commit d4ece46

Browse files
committed
Merge branch 'main' into remove-recordings
2 parents 271d649 + c1e2b19 commit d4ece46

49 files changed

Lines changed: 2902 additions & 840 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

‎.env.example‎

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# API Keys
2+
OPENAI_API_KEY=
3+
ANTHROPIC_API_KEY=
4+
5+
# PostHog Analytics
6+
# Used for tracking usage events in the app
7+
VITE_POSTHOG_API_KEY=your_posthog_api_key
8+
VITE_POSTHOG_API_HOST=https://your-posthog-instance.com
9+
VITE_POSTHOG_UI_HOST=https://us.i.posthog.com
10+
11+
# Apple Code Signing (for macOS builds)
12+
APPLE_CODESIGN_IDENTITY=
13+
APPLE_ID=
14+
APPLE_APP_SPECIFIC_PASSWORD=
15+
APPLE_TEAM_ID=
16+
APPLE_CODESIGN_CERT_BASE64=
17+
APPLE_CODESIGN_CERT_PASSWORD=
18+
APPLE_CODESIGN_KEYCHAIN_PASSWORD=

‎forge.config.ts‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ function copyNativeDependency(
9696

9797
const config: ForgeConfig = {
9898
packagerConfig: {
99+
asar: {
100+
unpack: "{**/*.node,**/.vite/build/cli.js,**/.vite/build/yoga.wasm}",
101+
},
99102
prune: false,
100103
name: "Array",
101104
executableName: "Array",

‎package.json‎

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@
6161
},
6262
"dependencies": {
6363
"@ai-sdk/openai": "^2.0.52",
64+
"@dnd-kit/react": "^0.1.21",
6465
"@phosphor-icons/react": "^2.1.10",
65-
"@posthog/agent": "1.16.4",
66+
"@posthog/agent": "1.17.0",
6667
"@radix-ui/react-icons": "^1.3.2",
6768
"@radix-ui/themes": "^3.2.1",
6869
"@tanstack/react-query": "^5.90.2",
@@ -84,12 +85,15 @@
8485
"idb-keyval": "^6.2.2",
8586
"node-addon-api": "^8.5.0",
8687
"node-pty": "1.1.0-beta37",
88+
"posthog-js": "^1.283.0",
89+
"posthog-node": "^4.18.0",
8790
"radix-themes-tw": "0.2.3",
8891
"react": "^18.2.0",
8992
"react-dom": "^18.2.0",
9093
"react-hook-form": "^7.64.0",
9194
"react-hotkeys-hook": "^4.4.4",
9295
"react-markdown": "^10.1.0",
96+
"react-resizable-panels": "^3.0.6",
9397
"sonner": "^2.0.7",
9498
"uuid": "^9.0.1",
9599
"zod": "^4.1.12",

0 commit comments

Comments
 (0)