This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
docs/src/frontend/package.json

48 lines
1.6 KiB
JSON
Raw Normal View History

{
"name": "impress",
🔖(minor) release 3.8.0 Added: - ✨(frontend) add pdf block to the editor - ✨List and restore deleted docs Changed: - ♻️(frontend) Refactor Auth component for improved redirection logic - ♻️(frontend) replace Arial font-family with token font - ♿(frontend) improve accessibility: - ♿(frontend) enable enter key to open documentss - ♿(frontend) improve modal a11y: structure, labels, title - ♿improve NVDA navigation in DocShareModal - ♿ improve accessibility by adding landmark roles to layout - ♿ add document visible in list and openable via enter key - ♿ add pdf outline property to enable bookmarks display - ♿ hide decorative icons from assistive tech with aria-hidden - ♿ fix rgaa 1.9.1: convert to figure/figcaption structure - ♿ remove redundant aria-label to avoid over-accessibility - ♿ remove redundant aria-label on hidden icons and update tests - ♿ improve semantic structure and aria roles of leftpanel - ♿ add default background to left panel for better accessibility - ♿ restyle checked checkboxes: removing strikethrough - ♿ add h1 for SR on 40X pages and remove alt texts - ♿ update labels and shared document icon accessibility - 🍱(frontend) Fonts GDPR compliants - ♻️(service-worker) improve SW registration and update handling Fixed: - 🐛(backend) duplicate sub docs as root for reader users - ⚗️(service-worker) remove index from cache first strategy - 🐛(frontend) fix 404 page when reload 403 page - 🐛(frontend) fix legacy role computation - 🛂(frontend) block editing title when not allowed - 🐛(frontend) scroll back to top when navigate to a document - 🐛(frontend) fix export pdf emoji problem - 🐛(frontend) fix attachment download filename - 🐛(frontend) exclude h4-h6 headings from table of contents - 🔒(frontend) prevent readers from changing callout emoji - 🐛(frontend) fix overlapping placeholders in multi-column layout - 🐛(backend) filter invitation with case insensitive email - 🐛(frontend) reduce no access image size from 450 to 300 - 🐛(frontend) preserve interlink style on drag-and-drop in editor - ✨(frontend) load docs logo from public folder via url - 🔧(keycloak) Fix https required issue in dev mode
2025-10-14 09:30:35 +02:00
"version": "3.8.0",
"private": true,
"repository": "https://github.com/suitenumerique/docs",
"author": "DINUM",
"license": "MIT",
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"servers/*"
]
},
"scripts": {
"APP_IMPRESS": "yarn workspace app-impress",
"APP_E2E": "yarn workspace app-e2e",
"I18N": "yarn workspace packages-i18n",
"COLLABORATION_SERVER": "yarn workspace server-y-provider",
"app:dev": "yarn APP_IMPRESS run dev",
"app:start": "yarn APP_IMPRESS run start",
"app:build": "yarn APP_IMPRESS run build",
"app:test": "yarn APP_IMPRESS run test",
"ci:build": "yarn APP_IMPRESS run build:ci",
"e2e:test": "yarn APP_E2E run test",
"lint": "yarn APP_IMPRESS run lint && yarn APP_E2E run lint && yarn workspace eslint-plugin-docs run lint && yarn I18N run lint && yarn COLLABORATION_SERVER run lint",
"i18n:extract": "yarn I18N run extract-translation",
"i18n:deploy": "yarn I18N run format-deploy && yarn APP_IMPRESS prettier",
"i18n:test": "yarn I18N run test",
"test": "yarn server:test && yarn app:test",
"server:test": "yarn COLLABORATION_SERVER run test"
},
"resolutions": {
"@types/node": "22.18.1",
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9",
"@typescript-eslint/eslint-plugin": "8.43.0",
"@typescript-eslint/parser": "8.43.0",
"eslint": "9.35.0",
"react": "19.1.1",
"react-dom": "19.1.1",
"typescript": "5.9.2",
"wrap-ansi": "9.0.2",
"yjs": "13.6.27"
},
"packageManager": "yarn@1.22.22"
}