mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-10 10:36:25 -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>
94 lines
2.6 KiB
JSON
94 lines
2.6 KiB
JSON
{
|
|
"name": "@sd/interface",
|
|
"version": "1.0.0",
|
|
"license": "GPL-3.0-only",
|
|
"private": true,
|
|
"main": "src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./types": "./src/types",
|
|
"./assets/*": "./src/assets/*",
|
|
"./components/*": "./src/components/*"
|
|
},
|
|
"scripts": {
|
|
"icons": "./scripts/generateSvgImports.mjs",
|
|
"lint": "eslint src/**/*.{ts,tsx} && tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@apollo/client": "^3.6.9",
|
|
"@fontsource/inter": "^4.5.11",
|
|
"@headlessui/react": "^1.6.6",
|
|
"@heroicons/react": "^2.0.10",
|
|
"@radix-ui/react-dialog": "^1.0.0",
|
|
"@radix-ui/react-dropdown-menu": "^1.0.0",
|
|
"@radix-ui/react-icons": "^1.1.1",
|
|
"@radix-ui/react-progress": "^0.1.4",
|
|
"@radix-ui/react-slider": "^0.1.4",
|
|
"@radix-ui/react-tooltip": "^1.0.0",
|
|
"@sd/assets": "workspace:*",
|
|
"@sd/client": "workspace:*",
|
|
"@sd/core": "workspace:*",
|
|
"@sd/ui": "workspace:*",
|
|
"@tailwindcss/forms": "^0.5.2",
|
|
"@tanstack/react-query": "^4.0.10",
|
|
"@tanstack/react-query-devtools": "^4.0.10",
|
|
"@types/styled-components": "^5.1.25",
|
|
"@vitejs/plugin-react": "^2.0.0",
|
|
"autoprefixer": "^10.4.7",
|
|
"byte-size": "^8.1.0",
|
|
"clsx": "^1.2.1",
|
|
"immer": "^9.0.15",
|
|
"jotai": "^1.7.6",
|
|
"lodash": "^4.17.21",
|
|
"moment": "^2.29.4",
|
|
"phosphor-react": "^1.4.1",
|
|
"pretty-bytes": "^6.0.0",
|
|
"react": "^18.2.0",
|
|
"react-colorful": "^5.5.1",
|
|
"react-countup": "^6.3.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-dropzone": "^14.2.2",
|
|
"react-error-boundary": "^3.1.4",
|
|
"react-hook-form": "^7.33.1",
|
|
"react-hotkeys-hook": "^3.4.7",
|
|
"react-json-view": "^1.21.3",
|
|
"react-loading-icons": "^1.1.0",
|
|
"react-loading-skeleton": "^3.1.0",
|
|
"react-portal": "^4.2.2",
|
|
"react-query": "^4.0.0",
|
|
"react-router": "6.3.0",
|
|
"react-router-dom": "6.3.0",
|
|
"react-scrollbars-custom": "^4.1.0",
|
|
"react-spline": "^1.2.1",
|
|
"react-transition-group": "^4.4.2",
|
|
"react-virtuoso": "^2.16.5",
|
|
"rooks": "^5.14.0",
|
|
"styled-components": "^5.3.5",
|
|
"tailwindcss": "^3.1.6",
|
|
"use-count-up": "^3.0.1",
|
|
"use-debounce": "^8.0.3",
|
|
"zod": "^3.18.0",
|
|
"zustand": "4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@sd/config": "workspace:*",
|
|
"@types/babel-core": "^6.25.7",
|
|
"@types/byte-size": "^8.1.0",
|
|
"@types/lodash": "^4.14.182",
|
|
"@types/node": "^18.6.1",
|
|
"@types/pretty-bytes": "^5.2.0",
|
|
"@types/react": "^18.0.15",
|
|
"@types/react-dom": "^18.0.6",
|
|
"@types/react-router-dom": "^5.3.3",
|
|
"@types/react-table": "^7.7.12",
|
|
"@types/react-window": "^1.8.5",
|
|
"@types/tailwindcss": "^3.1.0",
|
|
"@vitejs/plugin-react": "^1.3.1",
|
|
"concurrently": "^7.3.0",
|
|
"prettier": "^2.7.1",
|
|
"typescript": "^4.7.4",
|
|
"vite": "^3.0.3",
|
|
"vite-plugin-svgr": "^2.2.1"
|
|
}
|
|
}
|