Spaces:
Configuration error
Configuration error
Invalid JSON:Unexpected token '`', "```json
{
"... is not valid JSON
| ```json | |
| { | |
| "name": "spotsync-alpha-desktop", | |
| "version": "1.0.0", | |
| "description": "Desktop application for SpotSync Alpha - Trading Replication Engine", | |
| "main": "main.js", | |
| "scripts": { | |
| "start": "electron .", | |
| "dev": "ELECTRON_START_URL=http://localhost:3000 electron .", | |
| "build": "electron-builder", | |
| "build:win": "electron-builder --win", | |
| "build:mac": "electron-builder --mac", | |
| "build:linux": "electron-builder --linux" | |
| }, | |
| "keywords": [ | |
| "trading", | |
| "replication", | |
| "electron", | |
| "dashboard" | |
| ], | |
| "author": "SpotSync Team", | |
| "license": "MIT", | |
| "devDependencies": { | |
| "electron": "^24.0.0", | |
| "electron-builder": "^24.0.0" | |
| }, | |
| "dependencies": { | |
| "sqlite3": "^5.1.6" | |
| }, | |
| "build": { | |
| "appId": "com.spotsync.alpha", | |
| "productName": "SpotSync Alpha", | |
| "directories": { | |
| "output": "dist" | |
| }, | |
| "files": [ | |
| "**/*", | |
| "!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}", | |
| "!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}", | |
| "!**/node_modules/*.d.ts", | |
| "!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}", | |
| "!.editorconfig", | |
| "!**/._*", | |
| "!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}", | |
| "!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}", | |
| "!**/{appveyor.yml,.travis.yml,circle.yml}", | |
| "!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}" | |
| ], | |
| "win": { | |
| "target": "nsis", | |
| "icon": "assets/icon.ico" | |
| }, | |
| "mac": { | |
| "target": "dmg", | |
| "icon": "assets/icon.icns" | |
| }, | |
| "linux": { | |
| "target": "AppImage", | |
| "icon": "assets/icon.png" | |
| } | |
| } | |
| } | |
| ``` |