Files
ThreadNet-Web/pnpm-workspace.yaml
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

217 lines
7.7 KiB
YAML
Raw Normal View History

2026-02-11 10:35:29 +00:00
linkWorkspacePackages: true
2026-05-29 08:26:59 +00:00
cleanupUnusedCatalogs: true
ignorePatchFailures: false
ignoreWorkspaceRootCheck: true
minimumReleaseAgeStrict: true
dedupePeerDependents: true
dedupePeers: true
2026-07-10 10:47:41 +01:00
2026-02-11 10:35:29 +00:00
packages:
2026-02-24 15:48:47 +00:00
- "apps/*"
2026-02-11 10:35:29 +00:00
- "packages/*"
2026-06-08 11:19:13 +01:00
- "modules"
- "modules/*"
2026-05-29 08:26:59 +00:00
2026-02-11 10:35:29 +00:00
catalog:
# typescript
2026-07-14 09:09:03 +01:00
"typescript": 7.0.2
"@typescript/native": npm:typescript@7.0.2
"@types/node": ts7.0
2026-02-11 10:35:29 +00:00
# react
react: ^19.0.0
react-dom: ^19.0.0
"@types/react": ^19.2.10
"@types/react-dom": ^19.2.3
# playwright
2026-06-30 13:12:56 +00:00
"@playwright/test": 1.61.1
"playwright-core": 1.61.1
# Compound
"@vector-im/compound-design-tokens": 10.2.1
2026-07-23 13:09:55 +00:00
"@vector-im/compound-web": 9.9.0
# i18n
matrix-web-i18n: 3.6.0
2026-08-05 14:44:35 +01:00
# emojibase
"@matrix-org/emojibase-bindings": 1.5.0
# fonts
2026-07-22 13:00:53 +01:00
"@fontsource/inter": 5.3.0
# vite
2026-07-22 09:20:09 +00:00
vite: 8.1.5
vite-plugin-node-polyfills: 0.28.0
vite-plugin-svgr: 5.2.0
2026-07-13 07:40:23 +00:00
vitest: 4.1.10
"@vitest/spy": 4.1.10
"@vitest/coverage-v8": 4.1.10
"@vitest/browser-playwright": 4.1.10
2026-07-29 13:55:35 +00:00
"@vitejs/plugin-react": 6.0.4
unplugin-dts: 1.0.1
2026-08-05 10:59:15 +01:00
# nx
nx: 23.1.0
2026-05-29 08:26:59 +00:00
2026-07-14 09:09:03 +01:00
catalogs:
ts6:
typescript: npm:@typescript/typescript6@6.0.2
"@types/node": ts6.0
2026-02-16 10:10:24 +00:00
packageExtensions:
fdir:
dependencies:
# Fix missing type dependency
"@types/picomatch": 4.0.2
2026-04-17 10:01:27 +01:00
"@joshwooding/vite-plugin-react-docgen-typescript":
peerDependencies:
# Silence warning
vite: "^8.0.0"
"@vitest/mocker":
peerDependencies:
vite: "^8.0.0"
vitest:
peerDependencies:
vite: "^8.0.0"
2026-05-29 08:26:59 +00:00
allowBuilds:
# Needed to make the git dependency in layered.sh happy
2026-05-29 08:26:59 +00:00
matrix-js-sdk: true
"matrix-js-sdk@git+https://github.com/matrix-org/matrix-js-sdk.git": true
2026-05-29 08:26:59 +00:00
# Installs the CLI, which we do not need
"@sentry/cli": false
# Installs nx cloud client, which we do not need
nx: false
# Runs `vp config` to set up git hooks, which we do not need
unrs-resolver: false
# Prints funding banner
core-js: false
# Builds native bindings, which we do not need
cpu-features: false
# Copies the 7z binaries which match our arch, though somehow works without it
electron-winstaller: false
# Installs esbuild binary, though somehow works without it
esbuild: false
# Performs additional version checks, which we do not need
protobufjs: false
# Builds optional crypto binding, which we do not need
ssh2: false
# The following are to make wrangler-action happy - https://github.com/cloudflare/wrangler-action/issues/436
sharp: true
workerd: true
2026-05-29 08:26:59 +00:00
patchedDependencies:
2026-06-05 08:42:26 +01:00
# Workaround for missing types export
2026-05-29 08:26:59 +00:00
"@vector-im/matrix-wysiwyg": patches/@vector-im__matrix-wysiwyg.patch
2026-06-05 08:42:26 +01:00
# Workaround for lack of React 19 support
2026-05-29 08:26:59 +00:00
react-blurhash: patches/react-blurhash.patch
2026-06-05 08:42:26 +01:00
# Workaround for https://github.com/nfrasser/linkifyjs/issues/429
2026-05-29 08:26:59 +00:00
linkify-html: patches/linkify-html.patch
2026-06-05 08:42:26 +01:00
# Workaround for typescript incompatibilities in an archived dependency - soon to be deleted
2026-05-29 08:26:59 +00:00
"@matrix-org/react-sdk-module-api": patches/@matrix-org__react-sdk-module-api.patch
2026-06-05 08:42:26 +01:00
# Workaround to access a private API
2026-05-29 08:26:59 +00:00
"@types/auto-launch": patches/@types__auto-launch.patch
2026-06-05 08:42:26 +01:00
# Workaround for jest still using commonjs and not being able to use the ESM version of await-lock
2026-05-29 08:26:59 +00:00
await-lock: patches/await-lock.patch
2026-06-05 08:42:26 +01:00
# Workaround for global type mismatches
2026-05-29 08:26:59 +00:00
jest-fixed-jsdom: patches/jest-fixed-jsdom.patch
2026-06-05 08:42:26 +01:00
# Workaround for jsdom being super opinionated and making it hard to tweak global properties
2026-05-29 08:26:59 +00:00
jsdom: patches/jsdom.patch
2026-06-05 08:42:26 +01:00
# Workaround for missing return types
2026-05-29 08:26:59 +00:00
postcss-mixins: patches/postcss-mixins.patch
2026-06-05 08:42:26 +01:00
# Workaround for some babel rules being false positively flagged
2026-05-29 08:26:59 +00:00
knip: patches/knip.patch
2026-06-05 08:42:26 +01:00
# Workaround for being stuck on an old version of plist due to electron-builder not supporting ESM yet
2026-05-29 08:26:59 +00:00
plist: patches/plist.patch
2026-06-05 08:42:26 +01:00
# Workaround for type fails
"@arcmantle/vite-plugin-import-css-sheet": patches/@arcmantle__vite-plugin-import-css-sheet.patch
2026-05-29 08:26:59 +00:00
peerDependencyRules:
allowedVersions:
react: "19"
react-dom: "19"
eslint: "8"
vite: "8"
2026-05-29 08:26:59 +00:00
allowedDeprecatedVersions:
eslint: "8"
react-beautiful-dnd: "13"
overrides:
2026-07-29 13:55:35 +00:00
pretty-format@30>react-is: 19.2.8
2026-05-29 08:26:59 +00:00
"@types/react": "catalog:"
"@types/react-dom": "catalog:"
2026-07-28 17:07:21 +01:00
caniuse-lite: 1.0.30001806
2026-05-29 08:26:59 +00:00
matrix-widget-api: "^1.17.0"
"@types/node": 25.9.3
2026-05-29 08:26:59 +00:00
config-file-ts: 0.2.8-rc1
2026-07-06 15:08:59 +00:00
node-abi: 4.33.0
2026-08-05 10:59:15 +01:00
2026-07-13 15:40:31 +01:00
# https://github.com/advisories/GHSA-6v5v-wf23-fmfq
markdown-it: ^14.3.0
axios@>1.0.0 <=1.16.1: ^1.16.1
# https://github.com/advisories/GHSA-g7r4-m6w7-qqqr
esbuild@<=0.27.4: 0.27.4
2026-08-05 10:59:15 +01:00
# https://github.com/advisories/GHSA-3jxr-9vmj-r5cp
# https://github.com/advisories/GHSA-mh99-v99m-4gvg
# https://github.com/advisories/GHSA-rgw5-rvv9-x895
brace-expansion@>=1 <1.1.18: ^1.1.18
# https://github.com/advisories/GHSA-rgw5-rvv9-x895
# https://github.com/advisories/GHSA-mh99-v99m-4gvg
brace-expansion@>=2 <2.1.4: ^2.1.4
# https://github.com/advisories/GHSA-rgw5-rvv9-x895
brace-expansion@>=5 <=5.0.5: ^5.0.9
# https://github.com/advisories/GHSA-mwp4-54f8-5fhr
ip-address@>=10 <10.1.1: ^10.3.1
2026-07-13 15:40:31 +01:00
yaml@>=2 <2.8.3: ^2.8.4
# https://github.com/advisories/GHSA-f38q-mgvj-vph7
2026-08-05 10:59:15 +01:00
# https://github.com/advisories/GHSA-j3f2-48v5-ccww
protobufjs@7 <7.5.8: ^7.6.5
2026-07-13 15:40:31 +01:00
"@protobufjs/utf8@1 <1.1.1": ^1.1.1
2026-08-05 10:59:15 +01:00
# https://github.com/advisories/GHSA-v3r7-h72x-cjcm
# https://github.com/advisories/GHSA-m8rv-5g2x-5cg5
# https://github.com/advisories/GHSA-8xcm-r25x-g524
undici@6 <6.28.0: ^6.28.0
2026-07-13 15:40:31 +01:00
# https://github.com/advisories/GHSA-vmh5-mc38-953g
# https://github.com/advisories/GHSA-vxpw-j846-p89q
# https://github.com/advisories/GHSA-hm92-r4w5-c3mj
# https://github.com/advisories/GHSA-p88m-4jfj-68fv
# https://github.com/advisories/GHSA-pr7r-676h-xcf6
# https://github.com/advisories/GHSA-35p6-xmwp-9g52
# https://github.com/advisories/GHSA-g8m3-5g58-fq7m
2026-08-05 10:59:15 +01:00
# https://github.com/advisories/GHSA-m8rv-5g2x-5cg5
undici@7 <7.28.0: ^7.29.0
# https://github.com/advisories/GHSA-m8rv-5g2x-5cg5
# https://github.com/advisories/GHSA-8xcm-r25x-g524
# https://github.com/advisories/GHSA-4cwx-7wf7-3272
undici@8 <8.9.0: ^8.9.0
2026-07-13 15:40:31 +01:00
# https://github.com/advisories/GHSA-fx2h-pf6j-xcff
# https://github.com/advisories/GHSA-4w7w-66w2-5vf9
# https://github.com/advisories/GHSA-v6wh-96g9-6wx3
# vitepress is the only consumer of vite <8; pin it to a patched vite 6 (it does not support vite 8).
vitepress>vite: ^6.4.3
2026-08-05 10:59:15 +01:00
# https://github.com/advisories/GHSA-c2j3-45gr-mqc4
dompurify@3 <=3.4.11: ^3.4.12
# https://github.com/advisories/GHSA-v422-hmwv-36x6
body-parser@2 <2.3.0: ^2.3.0
# https://github.com/advisories/GHSA-g2r8-wvmj-jf5w
nx: "catalog:"
# https://github.com/advisories/GHSA-r292-9mhp-454m
tar@7 <=7.5.20: ^7.5.21
# https://github.com/advisories/GHSA-2p49-hgcm-8545
svgo@3 <3.3.4: ^3.3.4
# https://github.com/advisories/GHSA-2p49-hgcm-8545
svgo@4 <4.0.2: ^4.0.2
# https://github.com/advisories/GHSA-7p8r-x3mc-p8w7
fast-uri@3 <3.1.5: ^3.1.5
2026-07-14 09:09:03 +01:00
# Convince api-extractor to use a newer Typescript version
"unplugin-dts>typescript": "catalog:ts6"
"@microsoft/api-extractor>typescript": "catalog:ts6"
# Hold some things back from ts7
"@arcmantle/vite-plugin-import-css-sheet>typescript": "catalog:ts6"
"react-docgen-typescript>typescript": "catalog:ts6"
2026-05-29 08:26:59 +00:00
minimumReleaseAgeExclude:
- "matrix-js-sdk"
- "@matrix-org/*"
- "@vector-im/*"
- "@element-hq/*"
2026-07-14 09:09:03 +01:00
# Temporary for testing purposes
- "@typescript/*"
- typescript@7.0.2