mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-22 15:40:07 -04:00
* add generic dialog for keys settings * revert artifact failed key viewing attempt * move `Select` key list component * rename dialog * remove unused imports and add new select option for *all* keys * add WIP but broken key viewer dialog * cleanup code and fix key viewer dialog * add clipboard icon and copy functionality * generalise the `AlertDialog` and refactor `BackupRestoreDialog` to use it * use new alert dialog in place of JS/tauri alerts * use generic alerts everywhere and bring generic alert props/default state * make `SelectOptionKeyList` generic for mounted/unmounted keys (with the use of `map` for the latter) * add clipboard to generic alert dialog + clean up * fix accent colour button for backup restoration * remove unneeded props from components * add slider+automount button * tweak password gen function * add password autogeneration * clippy * tweak password generation * use `crypto-random-string` and drop rust password generation * add default TEMPORARY keymanager pass/secret key to library creation screen * make key automounting functional * clean up key viewer * change dialog name * remove slider as that wasn't even being used? * make requested changes and hide key viewer if no keys are in the key manager * prevent automount and library sync from being enabled simultaneously * include `memoryOnly` in key * mark keys as memoryOnly
77 lines
2.2 KiB
JSON
77 lines
2.2 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": {
|
|
"@fontsource/inter": "^4.5.13",
|
|
"@headlessui/react": "^1.7.3",
|
|
"@loadable/component": "^5.15.2",
|
|
"@radix-ui/react-progress": "^1.0.1",
|
|
"@radix-ui/react-slider": "^1.1.0",
|
|
"@radix-ui/react-toast": "^1.1.2",
|
|
"@radix-ui/react-tooltip": "^1.0.2",
|
|
"@sd/assets": "workspace:*",
|
|
"@sd/client": "workspace:*",
|
|
"@sd/ui": "workspace:*",
|
|
"@sentry/browser": "^7.16.0",
|
|
"@splinetool/react-spline": "^2.2.3",
|
|
"@splinetool/runtime": "^0.9.128",
|
|
"@tailwindcss/forms": "^0.5.3",
|
|
"@tanstack/react-query": "^4.12.0",
|
|
"@tanstack/react-query-devtools": "^4.12.0",
|
|
"@tanstack/react-virtual": "3.0.0-beta.18",
|
|
"@vitejs/plugin-react": "^2.1.0",
|
|
"@zxcvbn-ts/core": "^2.1.0",
|
|
"@zxcvbn-ts/language-common": "^2.0.1",
|
|
"@zxcvbn-ts/language-en": "^2.1.0",
|
|
"autoprefixer": "^10.4.12",
|
|
"byte-size": "^8.1.0",
|
|
"clsx": "^1.2.1",
|
|
"crypto-random-string": "^5.0.0",
|
|
"dayjs": "^1.11.5",
|
|
"phosphor-react": "^1.4.1",
|
|
"react": "^18.2.0",
|
|
"react-colorful": "^5.6.1",
|
|
"react-dom": "^18.2.0",
|
|
"react-error-boundary": "^3.1.4",
|
|
"react-hook-form": "^7.36.1",
|
|
"react-json-view": "^1.21.3",
|
|
"react-loading-skeleton": "^3.1.0",
|
|
"react-router": "6.4.2",
|
|
"react-router-dom": "6.4.2",
|
|
"rooks": "^5.14.0",
|
|
"tailwindcss": "^3.1.8",
|
|
"use-count-up": "^3.0.1",
|
|
"use-debounce": "^8.0.4",
|
|
"valtio": "^1.7.4"
|
|
},
|
|
"devDependencies": {
|
|
"@sd/config": "workspace:*",
|
|
"@types/babel-core": "^6.25.7",
|
|
"@types/byte-size": "^8.1.0",
|
|
"@types/loadable__component": "^5.13.4",
|
|
"@types/node": "^16.0.0",
|
|
"@types/react": "^18.0.21",
|
|
"@types/react-dom": "^18.0.6",
|
|
"@types/react-router-dom": "^5.3.3",
|
|
"@types/tailwindcss": "^3.1.0",
|
|
"@vitejs/plugin-react": "^1.3.1",
|
|
"prettier": "^2.7.1",
|
|
"typescript": "^4.8.4",
|
|
"vite": "^3.1.4",
|
|
"vite-plugin-svgr": "^2.2.1"
|
|
}
|
|
}
|