- Remove icon references from package.json (assets folder is empty) - Fix batch script syntax by replacing if/else blocks with goto labels - Remove parentheses and colons that conflict with batch syntax 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
83 lines
1.7 KiB
JSON
83 lines
1.7 KiB
JSON
{
|
|
"name": "meeting-assistant",
|
|
"version": "1.0.0",
|
|
"description": "Enterprise Meeting Knowledge Management",
|
|
"main": "src/main.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"build": "electron-builder",
|
|
"pack": "electron-builder --dir"
|
|
},
|
|
"author": "Your Company",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"electron": "^28.0.0",
|
|
"electron-builder": "^24.9.1"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.6.2"
|
|
},
|
|
"build": {
|
|
"appId": "com.company.meeting-assistant",
|
|
"productName": "Meeting Assistant",
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"files": [
|
|
"src/**/*",
|
|
"node_modules/**/*"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "../sidecar/dist/transcriber",
|
|
"to": "sidecar/transcriber",
|
|
"filter": ["**/*"]
|
|
},
|
|
{
|
|
"from": "../backend/dist/backend",
|
|
"to": "backend/backend",
|
|
"filter": ["**/*"]
|
|
},
|
|
{
|
|
"from": "config.json",
|
|
"to": "config.json"
|
|
}
|
|
],
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": ["x64"]
|
|
}
|
|
],
|
|
"signAndEditExecutable": false
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"artifactName": "${productName}-${version}-setup.${ext}",
|
|
"deleteAppDataOnUninstall": false
|
|
},
|
|
"mac": {
|
|
"target": [
|
|
{
|
|
"target": "dmg",
|
|
"arch": ["x64", "arm64"]
|
|
}
|
|
]
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
{
|
|
"target": "AppImage",
|
|
"arch": ["x64"]
|
|
}
|
|
]
|
|
},
|
|
"portable": {
|
|
"artifactName": "${productName}-${version}-portable.${ext}",
|
|
"unpackDirName": "Meeting-Assistant"
|
|
}
|
|
}
|
|
}
|