mirror of
https://github.com/Afilmory/afilmory
synced 2026-04-24 23:05:05 +00:00
- Added a new package `@photo-gallery/data` to manage photo data and metadata. - Updated various components to utilize the new photoLoader from the data package. - Adjusted dependencies in `pnpm-lock.yaml` and `package.json` files to include the new package. - Refactored imports across the application to streamline photo data access. Signed-off-by: Innei <tukon479@gmail.com>
33 lines
891 B
JSON
33 lines
891 B
JSON
{
|
|
"name": "@photo-gallery/ssr",
|
|
"type": "module",
|
|
"version": "1.0.0",
|
|
"packageManager": "pnpm@10.11.1",
|
|
"description": "",
|
|
"author": "Innei",
|
|
"license": "ISC",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "sh scripts/build.sh",
|
|
"build:jpg": "node scripts/webp-to-jpg.js",
|
|
"build:next": "next build",
|
|
"deploy": "npm run pages:build && wrangler pages deploy",
|
|
"dev": "next dev",
|
|
"pages:build": "pnpm dlx @cloudflare/next-on-pages",
|
|
"preview": "npm run pages:build && wrangler pages dev",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"@photo-gallery/data": "workspace:*",
|
|
"linkedom": "0.18.11",
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/next-on-pages": "1.13.12",
|
|
"@types/node": "22.15.30",
|
|
"@types/react": "19.1.6",
|
|
"@types/react-dom": "19.1.6",
|
|
"next": "15.3.3"
|
|
}
|
|
} |