penpot/media-processor/package.json
Andrey Antukh a1079cf788
⬆️ Update JVM, pnpm and node dependencies (#11404)
* ⬆️ Update pnpm and its deps

* ⬆️ Update JVM dependencies in backend and common

Update several JVM dependencies across backend and common:

- passay 1.6.6 -> 2.0.0 (package reorg, ctor-based rules)
- siphash 2.0.0 -> 3.0.0 (SipHasher* renamed to SipHash*)
- lettuce-core, guava, sqlite-jdbc, jsoup, lz4-java, markdown-clj,
  awssdk s3/sts, selmer, jackson-core/databind, shadow-cljs

Adapt passay validation to the new API (moved packages, constructor
configuration) and siphash to the renamed classes. Add tests for
password validation and UUID advisory-lock hashing.

AI-assisted-by: deepseek-v4-flash

* ⬆️ Update node on docker images

* 📎 Minor fixes related to pnpm12 compatibility
2026-09-01 12:01:35 +02:00

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.0.0+sha512.9e2e3dc3911995868dc94b8175c217c27e95408fa03b4a22749778f2b34f773b77cdd3b39ede8171b22fcd53be6a35342e9fac9948a68ef58df6488ce89a7e67",
"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"
}
}