Spaces:
Running
Running
| { | |
| "name": "veridex", | |
| "version": "4.0.0", | |
| "description": "AI-powered Deepfake Detection Tool", | |
| "main": "main.js", | |
| "scripts": { | |
| "start": "electron .", | |
| "build": "electron-builder build --win" | |
| }, | |
| "build": { | |
| "appId": "com.veridex.app", | |
| "productName": "VERIDEX", | |
| "directories": { | |
| "output": "dist" | |
| }, | |
| "win": { | |
| "target": "nsis", | |
| "icon": "assets/icon.ico" | |
| }, | |
| "nsis": { | |
| "oneClick": false, | |
| "allowToChangeInstallationDirectory": true, | |
| "createDesktopShortcut": true, | |
| "createStartMenuShortcut": true | |
| }, | |
| "extraResources": [ | |
| { | |
| "from": "../backend", | |
| "to": "backend", | |
| "filter": [ | |
| "**/*", | |
| "!venv/**", | |
| "!__pycache__/**", | |
| "!*.pyc", | |
| "!*.exe", | |
| "!visuals/**", | |
| "!weights/*.pth", | |
| "!weights/*.bin" | |
| ] | |
| }, | |
| { | |
| "from": "../frontend", | |
| "to": "frontend" | |
| } | |
| ] | |
| }, | |
| "devDependencies": { | |
| "electron": "^40.0.0", | |
| "electron-builder": "^24.0.0" | |
| } | |
| } | |