SPB Git

spb/vquant Public MIT

VibeQuant — AI-powered institutional-grade financial intelligence platform.

TypeScript 84.3% Python 11.7% JavaScript 1.6% CSS 1.5% HTML 0.7%
2.2 KB · 101 lines json
Raw Blame History
1{2  "name": "vquant-desktop",3  "version": "2.0.0",4  "description": "VQuant Financial Intelligence Platform - Desktop App",5  "main": "main.js",6  "author": "Simon-Pierre Boucher",7  "license": "MIT",8  "scripts": {9    "start": "electron .",10    "build": "npm run build:app && electron-builder --mac",11    "build:app": "cd .. && npm run build",12    "dev": "electron .",13    "pack": "electron-builder --dir",14    "dist": "electron-builder --mac"15  },16  "build": {17    "appId": "ai.vquant.desktop",18    "productName": "VQuant",19    "copyright": "Copyright © 2024 Simon-Pierre Boucher",20    "mac": {21      "category": "public.app-category.finance",22      "icon": "icons/icon.icns",23      "target": [24        {25          "target": "dmg",26          "arch": ["arm64", "x64"]27        }28      ],29      "darkModeSupport": true,30      "hardenedRuntime": true,31      "gatekeeperAssess": false32    },33    "dmg": {34      "title": "VQuant",35      "backgroundColor": "#0a0a0a",36      "contents": [37        { "x": 130, "y": 220 },38        { "x": 410, "y": 220, "type": "link", "path": "/Applications" }39      ]40    },41    "directories": {42      "output": "release",43      "buildResources": "icons"44    },45    "files": [46      "main.js",47      "preload.js",48      "setup.html",49      "setup.css",50      "icons/**/*"51    ],52    "extraResources": [53      {54        "from": "../dist",55        "to": "app-dist",56        "filter": ["**/*"]57      },58      {59        "from": "../server",60        "to": "server",61        "filter": ["**/*", "!node_modules/**"]62      },63      {64        "from": "../shared",65        "to": "shared",66        "filter": ["**/*"]67      },68      {69        "from": "../node_modules",70        "to": "node_modules",71        "filter": ["**/*"]72      },73      {74        "from": "../public",75        "to": "public",76        "filter": ["**/*"]77      },78      {79        "from": "../.venv",80        "to": ".venv",81        "filter": ["**/*"]82      },83      {84        "from": "../package.json",85        "to": "package.json"86      },87      {88        "from": "../requirements.txt",89        "to": "requirements.txt"90      }91    ]92  },93  "dependencies": {94    "electron-store": "^8.2.0"95  },96  "devDependencies": {97    "electron": "^33.4.0",98    "electron-builder": "^25.1.8"99  }100}101