mirror of
https://github.com/penpot/penpot.git
synced 2026-09-03 02:28:53 +00:00
* ⬆️ 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
33 lines
1.1 KiB
JSON
33 lines
1.1 KiB
JSON
{
|
|
"name": "@penpot/text-editor",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"main": "src/editor/TextEditor.js",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"coverage": "vitest run --coverage",
|
|
"wasm:update": "mkdir -p src/wasm && cp ../resources/public/js/render-wasm.wasm ./src/wasm/render-wasm.wasm && cp ../resources/public/js/render-wasm.js ./src/wasm/render-wasm.js",
|
|
"test": "vitest --run",
|
|
"fmt:js": "pnpx prettier -c src/**/*.js",
|
|
"test:watch": "vitest",
|
|
"test:watch:ui": "vitest --ui",
|
|
"test:watch:e2e": "vitest --browser"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "1.62.1",
|
|
"@types/node": "^26.1.2",
|
|
"@vitest/browser": "^4.1.10",
|
|
"@vitest/coverage-v8": "^4.1.10",
|
|
"@vitest/ui": "^4.1.11",
|
|
"canvas": "^3.2.3",
|
|
"esbuild": "^0.28.0",
|
|
"jsdom": "^30.0.1",
|
|
"playwright": "1.62.1",
|
|
"prettier": "^3.9.6",
|
|
"vite": "^8.2.0",
|
|
"vitest": "^4.1.10"
|
|
},
|
|
"packageManager": "pnpm@12.0.0+sha512.9e2e3dc3911995868dc94b8175c217c27e95408fa03b4a22749778f2b34f773b77cdd3b39ede8171b22fcd53be6a35342e9fac9948a68ef58df6488ce89a7e67"
|
|
}
|