mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-10 02:26:21 -04:00
38 lines
726 B
JSON
38 lines
726 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"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.0.9",
|
|
"scripts": "*",
|
|
"tsconfig": "*",
|
|
"typescript": "^4.7.2"
|
|
},
|
|
"jest": {
|
|
"preset": "scripts/jest/node"
|
|
},
|
|
"dependencies": {
|
|
"@sd/config": "workspace:*",
|
|
"@sd/core": "workspace:*",
|
|
"eventemitter3": "^4.0.7",
|
|
"immer": "^9.0.14",
|
|
"react-query": "^3.39.1",
|
|
"zustand": "4.0.0-rc.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.0.0",
|
|
"react-query": "^3.34.19"
|
|
}
|
|
}
|