mirror of
https://github.com/penpot/penpot.git
synced 2026-09-02 18:18:41 +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
45 lines
1.4 KiB
JSON
45 lines
1.4 KiB
JSON
{
|
|
"name": "@penpot/library",
|
|
"version": "1.2.0-RC1",
|
|
"license": "MPL-2.0",
|
|
"author": "Kaleidos INC Sucursal en España SL",
|
|
"packageManager": "pnpm@12.0.0+sha512.9e2e3dc3911995868dc94b8175c217c27e95408fa03b4a22749778f2b34f773b77cdd3b39ede8171b22fcd53be6a35342e9fac9948a68ef58df6488ce89a7e67",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/penpot/penpot.git"
|
|
},
|
|
"files": [
|
|
"target/library/penpot.js",
|
|
"target/library/penpot.js.map"
|
|
],
|
|
"main": "./target/library/penpot.js",
|
|
"exports": {
|
|
".": "./target/library/penpot.js"
|
|
},
|
|
"imports": {
|
|
"#self": {
|
|
"default": "./target/library/penpot.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"clear:shadow-cache": "rm -rf .shadow-cljs",
|
|
"build": "pnpm run clear:shadow-cache && clojure -M:dev:shadow-cljs release library",
|
|
"build:bundle": "./scripts/build",
|
|
"fmt": "cljfmt fix --parallel=true src/ test/",
|
|
"check-fmt": "cljfmt check --parallel=true src/ test/",
|
|
"lint": "clj-kondo --parallel --lint src/",
|
|
"test": "node --test",
|
|
"watch:test": "node --test --watch",
|
|
"watch": "pnpm run clear:shadow-cache && clojure -M:dev:shadow-cljs watch library"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^26.1.2",
|
|
"@zip.js/zip.js": "2.8.34",
|
|
"concurrently": "^10.0.5",
|
|
"date-fns": "^4.4.0",
|
|
"nodemon": "^3.1.14",
|
|
"source-map-support": "^0.5.21"
|
|
}
|
|
}
|