mirror of
https://github.com/penpot/penpot.git
synced 2026-09-11 14:39:35 +00:00
Run `corepack use pnpm@next-12` (resolved to 12.3.4) on every directory with a package.json: the repo root, the 11 module workspaces, and all submodules. Every packageManager field now carries the same pinned version and hash; the root and backend move off 11.20.0. Fix the composable-test-suite workspace config (esbuild allowBuilds placeholder left by pnpm 12) so its install passes, and add the missing packageManager fields to frontend/packages/ui and mcp/packages/plugin, since corepack only updates existing fields. Document the canonical update procedure in .serena/memories/workflow/updating-pnpm.md. AI-assisted-by: omen-alpha
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "media-processor",
|
|
"version": "1.0.0",
|
|
"description": "Stateless HTTP service for Penpot image and font processing",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "node esbuild.config.mjs",
|
|
"start": "node dist/index.js",
|
|
"start:dev": "tsx --env-file=../backend/scripts/_env src/index.ts",
|
|
"types:check": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"fmt": "prettier --write src/ test/",
|
|
"fmt:check": "prettier --check src/ test/",
|
|
"clean": "rm -rf dist/"
|
|
},
|
|
"packageManager": "pnpm@12.3.4+sha512.961aa41fb077da3a04a441d9f8e15ebc0c96da8ef710b2eb67bf9ee7cb0610eabd48f1fd85f51cffe73846785fa0f87c56a3a872a1d893f8446741b5cce45457",
|
|
"dependencies": {
|
|
"express": "^5.2.1",
|
|
"multer": "^2.2.0",
|
|
"p-queue": "^9.3.3",
|
|
"pino": "^10.3.1",
|
|
"pino-loki": "^3.0.0",
|
|
"pino-pretty": "^13.1.3",
|
|
"sharp": "^0.35.4",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.6",
|
|
"@types/multer": "^2.0.0",
|
|
"@types/node": "^26.3.0",
|
|
"@types/supertest": "^7.2.1",
|
|
"esbuild": "^0.28.2",
|
|
"prettier": "^3.6.2",
|
|
"supertest": "^7.2.2",
|
|
"tsx": "^4.23.12",
|
|
"typescript": "^7.0.2",
|
|
"vitest": "^4.1.11"
|
|
}
|
|
}
|