mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-09 18:16:23 -04:00
* move Rust backend to rspc * move server to Axum + remove parts of old bridge * move frontend over to @rspc/client * move core to rspc + update deps * fix Typescript errors + upgrade deps * document invalidate_query! macro * general cleanup + upgrade to PCR 0.6.0 * prisma error handling * upgrade to rspc 0.0.4 * update vite-plugin-ssr * fix typescript * fix builds * put landing page app name back * hardcode ffmpeg version on Windows * rename 'command' to 'mutation' to line up with react-query terminology * upgrade rspc to v0.0.5 + fix types * use shared ffmpeg binaries * general Typescript cleanup * fix clippy workflow failing due to tauri proc-macro Co-authored-by: Brendan Allan <brendonovich@outlook.com>
41 lines
821 B
JSON
41 lines
821 B
JSON
{
|
|
"name": "@sd/client",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"main": "./src/index.ts",
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"test": "jest",
|
|
"dev": "tsc -w",
|
|
"build": "tsc",
|
|
"lint": "TIMING=1 eslint src --fix",
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"jest": {
|
|
"preset": "scripts/jest/node"
|
|
},
|
|
"dependencies": {
|
|
"@rspc/client": "^0.0.5",
|
|
"@sd/config": "workspace:*",
|
|
"@sd/core": "workspace:*",
|
|
"@sd/interface": "workspace:*",
|
|
"@tanstack/react-query": "^4.0.10",
|
|
"eventemitter3": "^4.0.7",
|
|
"immer": "^9.0.15",
|
|
"lodash": "^4.17.21",
|
|
"zustand": "4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash": "^4.14.182",
|
|
"@types/react": "^18.0.15",
|
|
"scripts": "*",
|
|
"tsconfig": "*",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.0.0"
|
|
}
|
|
}
|