spacedrive/packages/client/package.json
Oscar Beaumont f7cd96732f
@sd/client SolidJS support - Part 1 (#1920)
* `createSolid` + `createPersistedMutable`

* Move all Valtio stores to SolidJS

* Remove Valtio from `@sd/client`

* Missed auth store

* wip

* `useSolidStore` allow mutable setting

* Restructure `@sd/client` a bit

* Add `WithSolid` + custom `useObserver`

* Parse props both ways

* Universal Context

* Solid to React context working

* Working universal context

* context inheritance

* whoops

* Make it clearer how the demo works

* wip: `useUniversalQuery`
2024-01-09 08:05:01 +00:00

37 lines
940 B
JSON

{
"name": "@sd/client",
"private": true,
"sideEffects": false,
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"test": "jest",
"lint": "eslint src --cache",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"typecheck": "tsc -b"
},
"dependencies": {
"@oscartbeaumont-sd/rspc-client": "=0.0.0-main-dc31e5b2",
"@oscartbeaumont-sd/rspc-react": "=0.0.0-main-dc31e5b2",
"@solid-primitives/deep": "^0.2.4",
"@tanstack/react-query": "^4.36.1",
"@tanstack/solid-query": "^5.17.9",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"fast-equals": "^5.0.1",
"plausible-tracker": "^0.3.8",
"react-hook-form": "^7.47.0",
"solid-js": "^1.8.8",
"zod": "~3.22.4"
},
"devDependencies": {
"@sd/config": "workspace:*",
"@types/react": "^18.2.34",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": "^18.2"
}
}