Files
OSIT-AE-App-Native-Electron/package.json
Scott Idem 280de213c1 Fix: Standardize Electron bridge and implement robust caching
- Refactored all IPC methods and parameters to snake_case for consistency with SvelteKit.
- Implemented exhaustive background caching engine with download locking.
- Reverted to legacy-proven flat hash storage pattern (hash.file).
- Added axios for reliable stream-based binary downloads.
- Updated preload and main handlers to support recursive room data fetching.
2026-01-23 16:30:23 -05:00

22 lines
454 B
JSON

{
"name": "aether_app_native_electron",
"version": "1.0.0",
"description": "AE Native Launcher V3",
"main": "dist/main/index.js",
"scripts": {
"start": "tsc && electron .",
"dev": "tsc && electron .",
"build": "tsc",
"watch": "tsc -w"
},
"devDependencies": {
"@types/node": "^22.10.7",
"electron": "^34.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"axios": "^1.13.2"
}
}