Some checks failed
Release Binaries / release (push) Has been cancelled
Features: - Binary-Free Mode: No OpenCode binary required - NomadArch Native mode with free Zen models - Native session management - Provider routing (Zen, Qwen, Z.AI) - Fixed MCP connection with explicit connectAll() - Updated installers and launchers for all platforms - UI binary selector with Native option Free Models Available: - GPT-5 Nano (400K context) - Grok Code Fast 1 (256K context) - GLM-4.7 (205K context) - Doubao Seed Code (256K context) - Big Pickle (200K context)
139 lines
3.6 KiB
JSON
139 lines
3.6 KiB
JSON
{
|
|
"name": "@neuralnomads/codenomad-electron-app",
|
|
"version": "0.4.0",
|
|
"description": "CodeNomad - AI coding assistant",
|
|
"author": {
|
|
"name": "Neural Nomads",
|
|
"email": "codenomad@neuralnomads.ai"
|
|
},
|
|
"type": "module",
|
|
"main": "dist/main/main.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/NeuralNomadsAI/CodeNomad.git"
|
|
},
|
|
"homepage": "https://github.com/NeuralNomadsAI/CodeNomad",
|
|
"scripts": {
|
|
"dev": "electron-vite dev",
|
|
"dev:electron": "cross-env NODE_ENV=development ELECTRON_ENABLE_LOGGING=1 NODE_OPTIONS=\"--import tsx\" electron electron/main/main.ts",
|
|
"build": "electron-vite build",
|
|
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
"preview": "electron-vite preview",
|
|
"build:binaries": "node scripts/build.js",
|
|
"build:mac": "node scripts/build.js mac",
|
|
"build:mac-x64": "node scripts/build.js mac-x64",
|
|
"build:mac-arm64": "node scripts/build.js mac-arm64",
|
|
"build:win": "node scripts/build.js win",
|
|
"build:win-arm64": "node scripts/build.js win-arm64",
|
|
"build:linux": "node scripts/build.js linux",
|
|
"build:linux-arm64": "node scripts/build.js linux-arm64",
|
|
"build:linux-rpm": "node scripts/build.js linux-rpm",
|
|
"build:all": "node scripts/build.js all",
|
|
"package:mac": "electron-builder --mac",
|
|
"package:win": "electron-builder --win",
|
|
"package:linux": "electron-builder --linux"
|
|
},
|
|
"dependencies": {
|
|
"@neuralnomads/codenomad": "file:../server",
|
|
"@codenomad/ui": "file:../ui"
|
|
},
|
|
"devDependencies": {
|
|
"7zip-bin": "^5.2.0",
|
|
"app-builder-bin": "^4.2.0",
|
|
"cross-env": "^7.0.3",
|
|
"electron": "39.0.0",
|
|
"electron-builder": "^24.0.0",
|
|
"electron-vite": "4.0.1",
|
|
"png2icons": "^2.0.1",
|
|
"pngjs": "^7.0.0",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "^5.3.0",
|
|
"vite": "^5.0.0",
|
|
"vite-plugin-solid": "^2.10.0"
|
|
},
|
|
"build": {
|
|
"appId": "ai.opencode.client",
|
|
"productName": "CodeNomad",
|
|
"directories": {
|
|
"output": "release",
|
|
"buildResources": "electron/resources"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"package.json"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "electron/resources",
|
|
"to": "",
|
|
"filter": [
|
|
"!icon.icns",
|
|
"!icon.ico"
|
|
]
|
|
}
|
|
],
|
|
"mac": {
|
|
"category": "public.app-category.developer-tools",
|
|
"target": [
|
|
{
|
|
"target": "zip",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|
|
],
|
|
"artifactName": "CodeNomad-${version}-${os}-${arch}.${ext}",
|
|
"icon": "electron/resources/icon.icns"
|
|
},
|
|
"dmg": {
|
|
"contents": [
|
|
{
|
|
"x": 130,
|
|
"y": 220
|
|
},
|
|
{
|
|
"x": 410,
|
|
"y": 220,
|
|
"type": "link",
|
|
"path": "/Applications"
|
|
}
|
|
]
|
|
},
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "zip",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|
|
],
|
|
"artifactName": "CodeNomad-${version}-${os}-${arch}.${ext}",
|
|
"icon": "electron/resources/icon.ico"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
{
|
|
"target": "zip",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|
|
],
|
|
"artifactName": "CodeNomad-${version}-${os}-${arch}.${ext}",
|
|
"category": "Development",
|
|
"icon": "electron/resources/icon.png"
|
|
}
|
|
},
|
|
"private": true
|
|
}
|