mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
* chore: update nodejs to 22 in an attempt to fix undici errors This is an attempt to fix the undici errors introduced after the switch from axios to native fetch. The decision was made as it native fetch on node 20 seems to be "experimental" and > since native fetch is no longer experimental since Node 21 * chore: increase the required node version * build: update nodejs version to 22 * chore: update nodejs version to 22 * chore: update @types/node to v22 * chore(gen-docs): update the gen-docs node engine requirement to 22
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "gen-docs",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"docusaurus": "docusaurus",
|
|
"start": "docusaurus start",
|
|
"build": "docusaurus build",
|
|
"swizzle": "docusaurus swizzle",
|
|
"deploy": "docusaurus deploy",
|
|
"clear": "docusaurus clear",
|
|
"serve": "docusaurus serve",
|
|
"write-translations": "docusaurus write-translations",
|
|
"write-heading-ids": "docusaurus write-heading-ids",
|
|
"typecheck": "tsc"
|
|
},
|
|
"dependencies": {
|
|
"@docusaurus/core": "3.4.0",
|
|
"@docusaurus/preset-classic": "3.4.0",
|
|
"@easyops-cn/docusaurus-search-local": "^0.44.2",
|
|
"@mdx-js/react": "^3.0.0",
|
|
"clsx": "^2.0.0",
|
|
"prism-react-renderer": "^2.3.0",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0",
|
|
"tailwindcss": "^3.4.4"
|
|
},
|
|
"devDependencies": {
|
|
"@docusaurus/module-type-aliases": "3.4.0",
|
|
"@docusaurus/tsconfig": "3.4.0",
|
|
"@docusaurus/types": "3.4.0",
|
|
"typescript": "~5.2.2"
|
|
},
|
|
"resolutions": {
|
|
"prismjs": "PrismJS/prism"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.5%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 3 chrome version",
|
|
"last 3 firefox version",
|
|
"last 5 safari version"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=22.0"
|
|
}
|
|
}
|