chore: update package dependencies and package manager version

- Upgraded pnpm to version 10.24.0 across multiple applications.
- Updated various package dependencies including:
  - `@shikijs/rehype` to version 3.19.0
  - `shiki` to version 3.19.0
  - `tsx` to version 4.21.0
  - `typescript-eslint` to version 8.48.1
  - `maplibre-gl` to version 5.14.0
  - `@hono/node-server` to version 1.19.6
  - `jotai` to version 2.15.2
  - `motion` to version 12.23.25
- Ensured consistency in package versions across applications.

Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
Innei
2025-12-03 18:59:38 +08:00
parent 885a1734e7
commit 3fe6ad564c
12 changed files with 720 additions and 249 deletions

View File

@@ -41,7 +41,7 @@
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@shikijs/rehype": "^3.15.0",
"@shikijs/rehype": "^3.19.0",
"@tailwindcss/postcss": "catalog:",
"@tailwindcss/typography": "catalog:",
"@types/glob": "^9.0.0",
@@ -56,15 +56,15 @@
"eslint-plugin-react-refresh": "^0.4.24",
"glob": "^13.0.0",
"globals": "^16.5.0",
"shiki": "^3.15.0",
"shiki": "^3.19.0",
"tailwind-scrollbar": "catalog:",
"tailwindcss": "catalog:",
"tailwindcss-animate": "catalog:",
"tailwindcss-safe-area": "catalog:",
"tailwindcss-uikit-colors": "catalog:",
"tsx": "^4.20.6",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.2.4"
"typescript-eslint": "^8.48.1",
"vite": "^7.2.6"
}
}
}

View File

@@ -95,4 +95,4 @@
],
"changelog": true
}
}
}

View File

@@ -2,7 +2,7 @@
"name": "@afilmory/ssr",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@10.18.1",
"packageManager": "pnpm@10.24.0",
"description": "",
"author": "Innei",
"main": "index.js",

View File

@@ -2,7 +2,7 @@
"name": "@afilmory/web",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.18.1",
"packageManager": "pnpm@10.24.0",
"repository": {
"type": "git",
"url": "https://github.com/Afilmory/Afilmory"
@@ -50,7 +50,7 @@
"i18next-browser-languagedetector": "8.2.0",
"immer": "11.0.0",
"jotai": "2.15.1",
"maplibre-gl": "^5.13.0",
"maplibre-gl": "^5.14.0",
"masonic": "4.1.0",
"motion": "12.23.24",
"ofetch": "1.5.1",
@@ -114,4 +114,4 @@
"vite-plugin-html": "3.2.2",
"vite-plugin-pwa": "1.1.0"
}
}
}

View File

@@ -2,7 +2,7 @@
"name": "@afilmory/core",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@10.18.0",
"packageManager": "pnpm@10.24.0",
"author": "Innei",
"main": "index.ts",
"scripts": {

View File

@@ -2,7 +2,7 @@
"name": "@afilmory/dashboard",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@10.18.0",
"packageManager": "pnpm@10.24.0",
"repository": {
"type": "git",
"url": "https://github.com/afilmory/afilmory"
@@ -108,4 +108,4 @@
"eslint --fix"
]
}
}
}

View File

@@ -11,7 +11,7 @@
"dependencies": {
"@afilmory/be-utils": "workspace:*",
"@afilmory/utils": "workspace:*",
"@hono/node-server": "^1.13.5",
"@hono/node-server": "^1.19.6",
"hono": "^4.10.7",
"zod": "catalog:"
},

View File

@@ -3,7 +3,7 @@
"type": "module",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.19.0",
"packageManager": "pnpm@10.24.0",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
@@ -79,4 +79,4 @@
"pnpm update:lastmodified"
]
}
}
}

View File

@@ -11,13 +11,13 @@
"react": "^19.1.1"
},
"dependencies": {
"jotai": "^2.15.1",
"usehooks-ts": "^3.1.0"
"jotai": "^2.15.2",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"react": "^19.1.1",
"react-dom": "^19.1.1"
"react": "^19.2.0",
"react-dom": "^19.2.0"
}
}

View File

@@ -27,8 +27,8 @@
"@radix-ui/react-switch": "1.2.6",
"@radix-ui/react-tooltip": "1.2.8",
"clsx": "^2.1.1",
"jotai": "^2.15.1",
"motion": "^12.23.24",
"jotai": "^2.15.2",
"motion": "^12.23.25",
"react-intersection-observer": "10.0.0",
"sonner": "2.0.7",
"tailwind-merge": "^3.4.0",
@@ -39,7 +39,7 @@
"devDependencies": {
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"react": "^19.1.1",
"react-dom": "^19.1.1"
"react": "^19.2.0",
"react-dom": "^19.2.0"
}
}

View File

@@ -2,7 +2,7 @@
"name": "@afilmory/webgl-viewer",
"type": "module",
"version": "0.2.0",
"packageManager": "pnpm@10.18.1",
"packageManager": "pnpm@10.24.0",
"description": "",
"author": "Innei",
"license": "MIT",

917
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff