Files
spacedrive/apps/desktop/package.json
Oscar Beaumont c50741dd79 Improve Sync + P2P Integration (#1265)
* Big bruh moment

* whoops

* Less stackoverflowy debug

* stuff

* Fix flawed P2P mDNS instance advertisements

* do sync when connecting with peer

* Sync after pairing

* resync_part2 all the time

* Invalidate all the things

* Invalidate whole React Query on sync event

* emit_messages_flag

* emit_messages_flag

* Backend feature flags + "emitSyncEvents" feature

* Patch `confirm` type cause Tauri cringe

* clippy

* idk but plz work

* bruh

* Fix ComLink bug

* remove log

---------

Co-authored-by: Brendan Allan <brendonovich@outlook.com>
2023-08-29 17:54:58 +00:00

46 lines
1.2 KiB
JSON

{
"name": "@sd/desktop",
"version": "1.0.0",
"main": "index.ts",
"license": "GPL-3.0-only",
"private": true,
"scripts": {
"vite": "vite",
"dev": "node ./src-tauri/scripts/tauri.js dev",
"dev-vite": "vite --clearScreen=false --mode development",
"build": "node ./src-tauri/scripts/tauri.js build",
"dmg": "open ../../target/release/bundle/dmg/",
"typecheck": "tsc -b",
"lint": "eslint src --cache"
},
"dependencies": {
"@rspc/client": "=0.0.0-main-799eec5d",
"@rspc/tauri": "=0.0.0-main-799eec5d",
"@sd/client": "workspace:*",
"@sd/interface": "workspace:*",
"@sd/ui": "workspace:*",
"@tanstack/react-query": "^4.24.4",
"@tauri-apps/api": "1.3.0",
"comlink": "^4.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "6.9.0"
},
"devDependencies": {
"@iarna/toml": "^2.2.5",
"@sd/config": "workspace:*",
"@tauri-apps/cli": "1.3.1",
"@types/babel-core": "^6.25.7",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"sass": "^1.55.0",
"semver": "^7.5.0",
"typescript": "^5.0.4",
"vite": "^4.0.4",
"vite-plugin-svgr": "^2.2.1",
"vite-tsconfig-paths": "^4.0.3",
"vite-plugin-html": "^3.2.0"
}
}