f19d8ff7e9
Clears the Electron advisory batch (use-after-free, IPC scoping, origin
handling, ASAR integrity, …) — patched in **39.8.5+**, resolves to
**39.8.10**.
- `twenty-companion` is the standalone desktop companion app
(electron-forge; @electron-forge 7.8 supports Electron 39). Main-process
code only uses basic `require('electron')` APIs, stable across 36→39.
- Lockfile + manifest only; gate-safe; hardened install clean.
⚠️ **Verification caveat:** there's no CI job that builds/tests
twenty-companion, so this isn't exercised by CI, and I couldn't verify
runtime locally (electron-forge packaging downloads the ~100MB Electron
binary / needs a display, and the repo's `enableScripts: false` skips
the binary). **Recommend a manual smoke test** (`yarn make`/`start` in
twenty-companion) before relying on the bump.
63 lines
1.9 KiB
JSON
63 lines
1.9 KiB
JSON
{
|
|
"name": "twenty-desktop",
|
|
"productName": "Twenty",
|
|
"version": "1.0.0",
|
|
"description": "Twenty meeting recorder",
|
|
"main": ".webpack/main",
|
|
"scripts": {
|
|
"start": "concurrently \"yarn start:server\" \"yarn start:electron\"",
|
|
"start:electron": "electron-forge start",
|
|
"package": "electron-forge package",
|
|
"make": "electron-forge make",
|
|
"publish": "electron-forge publish",
|
|
"lint": "echo \"No linting configured\"",
|
|
"start:server": "node ./src/server.js"
|
|
},
|
|
"keywords": [],
|
|
"author": {
|
|
"name": "Nick Faro",
|
|
"email": "yux50000@hotmail.com"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
"@electron-forge/cli": "^7.8.0",
|
|
"@electron-forge/maker-deb": "^7.8.0",
|
|
"@electron-forge/maker-dmg": "^7.8.1",
|
|
"@electron-forge/maker-rpm": "^7.8.0",
|
|
"@electron-forge/maker-squirrel": "^7.8.0",
|
|
"@electron-forge/maker-zip": "^7.8.0",
|
|
"@electron-forge/plugin-auto-unpack-natives": "^7.8.0",
|
|
"@electron-forge/plugin-fuses": "^7.8.0",
|
|
"@electron-forge/plugin-webpack": "^7.8.0",
|
|
"@electron/fuses": "^1.8.0",
|
|
"@vercel/webpack-asset-relocator-loader": "^1.7.3",
|
|
"css-loader": "^6.11.0",
|
|
"electron": "^39.8.5",
|
|
"node-loader": "^2.1.0",
|
|
"style-loader": "^3.3.4"
|
|
},
|
|
"resolutions": {
|
|
"@electron/packager/@electron/osx-sign": "github:recallai/osx-sign"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.40.1",
|
|
"@recallai/desktop-sdk": "^2.0.0",
|
|
"@timfish/forge-externals-plugin": "^0.2.1",
|
|
"axios": "^1.16.0",
|
|
"codemirror": "^6.0.1",
|
|
"concurrently": "^9.2.1",
|
|
"dotenv": "^16.5.0",
|
|
"easymde": "^2.20.0",
|
|
"electron-squirrel-startup": "^1.0.1",
|
|
"express": "^4.18.2",
|
|
"marked": "^5.0.0",
|
|
"openai": "^4.97.0",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0",
|
|
"react-markdown": "^10.1.0",
|
|
"simplemde": "^1.11.2",
|
|
"zod": "^3.25.76"
|
|
}
|
|
}
|