Files
suwayomi-material-you-webui/package.json

139 lines
5.4 KiB
JSON
Raw Normal View History

{
2026-03-10 22:28:19 +01:00
"name": "project",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"setup-env-files": "tsx tools/scripts/setupEnvFiles.ts",
2026-05-15 15:11:47 +02:00
"setup": "pnpm i --frozen-lockfile && pnpm setup-env-files",
"dev": "pnpm setup && vite",
"preview": "pnpm setup && vite preview",
"build": "pnpm setup && vite build",
2026-03-10 22:28:19 +01:00
"test": "node -e \"console.log('imagine')\"",
"build-md5": "find build -type f | sort | xargs md5sum | awk '{ print $1 }' | tr -d '\n' | md5sum| awk '{ print $1 }' > buildZip/md5sum ",
"build-zip": "cd build && rev=$(git rev-list HEAD --count) && echo r$rev > revision && zip -9 -r ../buildZip/Suwayomi-WebUI-r$rev *",
"lint": "oxlint src tools",
2026-03-10 22:28:19 +01:00
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"createCommitChangelog": "tsx tools/scripts/release/createCommitChangelog.ts",
"createTranslationChangelog": "tsx tools/scripts/release/createTranslationChangelog.ts",
"createReleaseChangelog": "tsx tools/scripts/release/createReleaseChangelog.ts",
"updateDeps": "tsx tools/scripts/updateDependencies.ts",
"gql:codegen-base": "graphql-codegen --config gql_codegen.ts",
"gql:codegen-formatter": "tsx tools/scripts/codegenFormatter.ts",
2026-05-15 15:11:47 +02:00
"gql:codegen": "pnpm gql:codegen-base && pnpm gql:codegen-formatter",
2026-03-10 22:28:19 +01:00
"i18n:extract": "lingui extract --locale en --clean",
"i18n:gen-resources": "tsx tools/scripts/weblate/generatei18nResources.ts",
"dayjs:gen-locales-array": "tsx tools/scripts/dayjs/generateDayJsLocales.ts",
"dayjs:gen-locales-import": "tsx tools/scripts/dayjs/generateDayJsLocalesImport.ts",
2026-05-15 15:11:47 +02:00
"dayjs:gen-locales": "pnpm dayjs:gen-locales-array && pnpm dayjs:gen-locales-import",
2026-03-10 22:28:19 +01:00
"manga:gen-type-tags": "tsx tools/scripts/manga/generateMangaTypeTags.ts",
"tsc": "tsgo",
"tsc:legacy": "tsc",
"prepare": "husky"
},
"dependencies": {
2026-04-25 14:42:07 +02:00
"@apollo/client": "4.1.9",
2026-03-10 22:28:19 +01:00
"@dnd-kit/core": "6.3.1",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"@emotion/cache": "11.14.0",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@juggle/resize-observer": "3.4.0",
2026-05-15 16:30:57 +02:00
"@lingui/core": "6.0.1",
"@lingui/react": "6.0.1",
2026-03-10 22:28:19 +01:00
"@loadable/component": "5.16.7",
2026-05-15 16:30:57 +02:00
"@mantine/hooks": "9.2.1",
"@mui/icons-material": "9.0.1",
"@mui/material": "9.0.1",
"@mui/system": "9.0.1",
"@mui/utils": "9.0.1",
"@mui/x-date-pickers": "9.2.0",
2026-04-25 14:42:07 +02:00
"@redux-devtools/extension": "4.0.0",
2026-03-10 22:28:19 +01:00
"@vibrant/color": "4.0.4",
"apollo-upload-client": "19.0.0",
"awaitable-component": "1.0.0",
"csstype": "3.2.3",
2026-04-25 14:42:07 +02:00
"dayjs": "1.11.20",
"fast-average-color": "9.5.2",
2026-03-10 22:28:19 +01:00
"file-selector": "2.1.2",
2026-05-15 16:30:57 +02:00
"graphql": "16.14.0",
2026-03-10 22:28:19 +01:00
"graphql-sock": "1.0.1",
"graphql-tag": "2.12.6",
2026-04-25 14:42:07 +02:00
"graphql-ws": "6.0.8",
2026-05-15 16:30:57 +02:00
"immer": "11.1.8",
2026-04-25 14:42:07 +02:00
"jsonrepair": "3.14.0",
2026-03-10 22:28:19 +01:00
"koration": "1.0.0",
2026-03-13 22:41:28 +01:00
"lodash": "4.18.1",
2026-04-25 14:42:07 +02:00
"material-ui-popup-state": "5.3.7",
2026-03-10 22:28:19 +01:00
"mui-nested-menu": "4.0.3",
"node-vibrant": "4.0.4",
"notistack": "3.0.2",
"p-limit": "7.3.0",
"polished": "4.3.1",
2026-05-15 16:30:57 +02:00
"react": "19.2.6",
"react-dom": "19.2.6",
"react-hotkeys-hook": "5.3.2",
2026-03-10 22:28:19 +01:00
"react-lazily": "0.9.2",
"react-router-dom": "6.26.1",
2026-05-15 16:30:57 +02:00
"react-virtuoso": "4.18.7",
2026-03-10 22:28:19 +01:00
"rxjs": "7.8.2",
2026-04-25 14:42:07 +02:00
"stylis": "4.4.0",
2026-03-10 22:28:19 +01:00
"stylis-plugin-rtl": "2.1.1",
"use-long-press": "3.3.0",
"use-query-params": "2.2.2",
"webfontloader": "1.6.28",
2026-05-15 16:30:57 +02:00
"zustand": "5.0.13"
2026-03-10 22:28:19 +01:00
},
"devDependencies": {
2026-05-15 20:40:31 +02:00
"@graphql-codegen/cli": "7.0.0",
"@graphql-codegen/client-preset": "6.0.0",
2026-04-25 14:42:07 +02:00
"@graphql-codegen/typescript-apollo-client-helpers": "4.0.1",
2026-05-15 20:40:31 +02:00
"@graphql-codegen/typescript-operations": "6.0.2",
2026-05-15 16:30:57 +02:00
"@lingui/cli": "6.0.1",
"@lingui/format-po": "6.0.1",
2026-04-25 14:42:07 +02:00
"@lingui/swc-plugin": "6.0.0",
2026-05-15 16:30:57 +02:00
"@lingui/vite-plugin": "6.0.1",
2026-04-25 14:42:07 +02:00
"@tony.ganchev/eslint-plugin-header": "3.4.4",
2026-03-13 22:41:28 +01:00
"@types/lodash": "4.17.24",
2026-03-10 22:28:19 +01:00
"@types/node": "24.10.1",
"@types/react": "19.2.14",
"@types/react-beautiful-dnd": "13.1.8",
"@types/react-dom": "19.2.3",
"@types/sanitize-html": "2.16.1",
"@types/stylis": "4.2.7",
"@types/webfontloader": "1.6.38",
"@types/yargs": "17.0.35",
2026-05-15 16:30:57 +02:00
"@typescript/native-preview": "7.0.0-dev.20260514.1",
"@vitejs/plugin-legacy": "8.0.2",
2026-04-25 14:42:07 +02:00
"@vitejs/plugin-react-swc": "4.3.0",
"dotenv": "17.4.2",
2026-03-10 22:28:19 +01:00
"eslint": "9.39.4",
2026-04-25 14:42:07 +02:00
"eslint-plugin-lingui": "0.13.1",
2026-05-15 16:30:57 +02:00
"eslint-plugin-no-only-tests": "3.4.0",
2026-03-10 22:28:19 +01:00
"eslint-plugin-no-relative-import-paths": "1.6.1",
2026-03-11 00:11:29 +01:00
"eslint-plugin-unused-imports": "4.4.1",
2026-03-10 22:28:19 +01:00
"husky": "9.1.7",
2026-05-15 16:30:57 +02:00
"lint-staged": "17.0.4",
"oxfmt": "0.49.0",
"oxlint": "1.64.0",
"terser": "5.47.1",
"tsx": "4.22.0",
"typescript": "6.0.3",
"vite": "8.0.13",
2026-04-25 14:42:07 +02:00
"vite-plugin-node-polyfills": "0.26.0",
2026-05-15 16:30:57 +02:00
"vite-plugin-pwa": "1.3.0",
"workbox-build": "7.4.1",
"workbox-window": "7.4.1",
2026-03-10 22:28:19 +01:00
"yargs": "18.0.0"
},
"resolutions": {
"@swc/core": "1.15.11"
},
"engines": {
"node": ">=24"
2026-05-15 21:25:01 +02:00
},
"packageManager": "pnpm@11.1.2"
2021-01-21 15:04:11 +03:30
}