Intial Version

This commit is contained in:
2025-12-03 18:00:10 -05:00
parent 43c4227da7
commit 0b86c88eb4
55 changed files with 8938 additions and 0 deletions

61
electron-app/package.json Normal file
View File

@@ -0,0 +1,61 @@
{
"name": "rmtpocketwatcher",
"version": "1.0.0",
"description": "Real-time AUEC price tracking desktop application",
"main": "dist/main/index.js",
"scripts": {
"dev": "vite",
"build:main": "tsc --project tsconfig.main.json && tsc --project tsconfig.preload.json",
"build:renderer": "vite build",
"build": "npm run build:main && npm run build:renderer",
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && cross-env NODE_ENV=development electron dist/main/index.js\"",
"electron:build": "npm run build && electron-builder",
"test": "jest"
},
"dependencies": {
"electron": "^30.0.0",
"electron-updater": "^6.1.0",
"recharts": "^3.5.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.3.27",
"@types/ws": "^8.5.10",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^8.2.0",
"cross-env": "^10.1.0",
"electron-builder": "^24.9.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.lambdabanking.rmtpocketwatcher",
"productName": "rmtPocketWatcher",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"package.json"
],
"win": {
"target": [
"nsis"
]
},
"mac": {
"target": [
"dmg"
]
},
"linux": {
"target": [
"AppImage"
]
}
}
}