mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-20 14:38:58 -04:00
* Tag queries + Identifier bug fix - added empty pages for docs - added non-functional "New Library" button to sidebar - to accomplish above, moved dialog logic to component folder - fixed Identifier bug where location id was not considered in the orphan files query, meaning it would attempt to identify many non-existent paths and fail to create the legitimate ones * (fix) maintain file item aspect ratio in grid view (fix) get tag query + get all tags * codegen * resurrected context menu * fix window flash * remove location based thumb sorting + update react on landing * add is_archived to location * improved context menu * assign tag + refactor explorer store Co-authored-by: maxichrome <maxichrome@users.noreply.github.com> * assign/unassign tags from context menu * fix lint * keep context menu open on tag change * fix brendan feedback + merge main * fix type * codegen * style changes * revert windows size and xcode proj * remove outdated doc * coming sooooooon * updated release notes * release notes * dashes > dots * clean up docs * more docs! * restore entitlements * remove unused util * regenerated migrations post merge - some additional error handling added to migration runner, needs more work! * refactor explorer to support tags * fix error and revert explorer bg color * put it in a box they said * revert location id store removal * upgrade hero icons + style tweaks Co-authored-by: maxichrome <maxichrome@users.noreply.github.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/core": "workspace:*",
|
|
"@sd/config": "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.2.0"
|
|
}
|
|
}
|