mirror of
https://github.com/linkwarden/browser-extension.git
synced 2026-06-22 20:00:19 +00:00
64 lines
2.3 KiB
JSON
64 lines
2.3 KiB
JSON
{
|
|
"name": "linkwarden-extension",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"author": "Jordan Higuera Higuera <jordan_higuera@hotmail.com>",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"description": "Linkwarden browser extension",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build && cp ./manifest.json dist/manifest.json",
|
|
"build:safari": "tsc && vite build --outDir dist-safari && cp ./manifest.safari.json dist-safari/manifest.json && cp public/*.png dist-safari/",
|
|
"convert:safari": "xcrun safari-web-extension-converter dist-safari/ --project-location safari/ --app-name Linkwarden --bundle-identifier app.linkwarden.safari-extension --swift --macos-only --no-prompt --no-open",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@hookform/resolvers": "^3.2.0",
|
|
"@radix-ui/react-checkbox": "^1.0.4",
|
|
"@radix-ui/react-dialog": "^1.0.4",
|
|
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
"@radix-ui/react-icons": "^1.3.0",
|
|
"@radix-ui/react-label": "^2.0.2",
|
|
"@radix-ui/react-popover": "^1.0.6",
|
|
"@radix-ui/react-select": "^1.2.2",
|
|
"@radix-ui/react-separator": "^1.0.3",
|
|
"@radix-ui/react-slot": "^1.0.2",
|
|
"@radix-ui/react-toast": "^1.1.4",
|
|
"@tanstack/react-query": "^4.32.6",
|
|
"@types/chrome": "^0.0.243",
|
|
"axios": "^1.4.0",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.0.0",
|
|
"cmdk": "^0.2.0",
|
|
"lucide-react": "^0.264.0",
|
|
"query-string": "^8.1.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hook-form": "^7.45.4",
|
|
"tailwind-merge": "^1.14.0",
|
|
"tailwindcss-animate": "^1.0.6",
|
|
"zod": "^3.21.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/firefox-webext-browser": "^120.0.0",
|
|
"@types/node": "^20.4.8",
|
|
"@types/react": "^18.2.15",
|
|
"@types/react-dom": "^18.2.7",
|
|
"@types/webextension-polyfill": "^0.12.1",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"@vitejs/plugin-react": "^4.0.3",
|
|
"autoprefixer": "^10.4.14",
|
|
"eslint": "^8.45.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.3",
|
|
"postcss": "^8.4.27",
|
|
"tailwindcss": "^3.3.3",
|
|
"typescript": "^5.0.2",
|
|
"vite": "^7.2.0",
|
|
"webextension-polyfill": "^0.12.0"
|
|
}
|
|
}
|