Files
spacedrive/packages/client/package.json
Oscar Beaumont 3804f034f1 Move Rust backend to rspc (#345)
* 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>
2022-08-03 08:36:03 -07:00

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"
}
}