3a6be50e31
- Create docs/ landing page with dark theme, download link, features, setup instructions, and requirements - Fix build config: add signAndEditExecutable=false to avoid winCodeSign symlink errors, replace broken afterSign/afterAllArtifactBuild with forceCodeSigning=false - Clean up removed dev dependencies (sharp, png-to-ico) from lockfile Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "alta-api-client",
|
|
"version": "1.0.0",
|
|
"description": "Electron app for connecting to Alta API",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"dev": "electron . --dev",
|
|
"build": "electron-builder --win --publish=never",
|
|
"build-test": "electron-builder --win --dir",
|
|
"prebuild": "echo Checking build requirements..."
|
|
},
|
|
"build": {
|
|
"appId": "com.internal.alta-camera-proxy",
|
|
"productName": "Alta Camera Proxy",
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"win": {
|
|
"target": "portable",
|
|
"icon": "assets/icon.png",
|
|
"signAndEditExecutable": false
|
|
},
|
|
"portable": {
|
|
"artifactName": "AltaCameraProxy-${version}-portable.exe"
|
|
},
|
|
"forceCodeSigning": false
|
|
},
|
|
"keywords": [
|
|
"electron",
|
|
"alta",
|
|
"api",
|
|
"avigilon"
|
|
],
|
|
"author": "Your Name",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"electron": "^28.0.0",
|
|
"electron-builder": "^26.4.0",
|
|
"electron-packager": "^17.1.2"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.6.0",
|
|
"crypto-js": "^4.2.0"
|
|
}
|
|
}
|