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/servers/y-provider/package.json

51 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "server-y-provider",
🔖(minor) release 3.4.0 Added: - ✨(frontend) multi-pages - ✨(frontend) Duplicate a doc - ✨Ask for access - ✨(frontend) add customization for translations - ✨(backend) add ancestors links definitions to document abilities - ✨(backend) include ancestors accesses on document accesses list view - ✨(backend) add ancestors links reach and role to document API - 📝(project) add troubleshoot doc - 📝(project) add system-requirement doc - 🔧(front) configure x-frame-options to DENY in nginx conf - ✨(backend) allow to disable checking unsafe mimetype on attachment upload - ✨(doc) add documentation to install with compose - ✨ Give priority to users connected to collaboration server (aka no websocket feature) Changed: - ♻️(backend) stop requiring owner for non-root documents - ♻️(backend) simplify roles by ranking them and return only the max role - 📌(yjs) stop pinning node to minor version on yjs docker image - 🧑‍💻(docker) add .next to .dockerignore - 🧑‍💻(docker) handle frontend development images with docker compose - 🧑‍💻(docker) add y-provider config to development environment - ⚡️(frontend) optimize document fetch error handling Fixed: - 🐛(backend) fix link definition select options linked to ancestors - 🐛(frontend) table of content disappearing - 🐛(frontend) fix multiple EmojiPicker - 🐛(frontend) fix meta title - 🔧(git) set LF line endings for all text files - 📝(docs) minor fixes to docs/env.md - ✨support `_FILE` environment variables for secrets Removed: - 🔥(frontend) remove Beta from logo
2025-07-09 09:49:30 +02:00
"version": "3.4.0",
"description": "Y.js provider for docs",
"repository": "https://github.com/numerique-gouv/impress",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias",
"dev": "cross-env COLLABORATION_LOGGING=true && nodemon --config nodemon.json",
"start": "node ./dist/start-server.js",
"lint": "eslint . --ext .ts",
"test": "vitest --run"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@blocknote/server-util": "0.33.0",
"@hocuspocus/server": "2.15.2",
"@sentry/node": "9.38.0",
"@sentry/profiling-node": "9.38.0",
"axios": "1.10.0",
"cors": "2.8.5",
"express": "5.1.0",
"express-ws": "5.0.2",
"uuid": "11.1.0",
"y-protocols": "1.0.6",
"yjs": "*"
},
"devDependencies": {
"@hocuspocus/provider": "2.15.2",
"@types/cors": "2.8.19",
"@types/express": "5.0.3",
"@types/express-ws": "3.0.5",
"@types/node": "*",
"@types/supertest": "6.0.3",
"@types/ws": "8.18.1",
"cross-env": "7.0.3",
"eslint-config-impress": "*",
"nodemon": "3.1.10",
"supertest": "7.1.3",
"ts-node": "10.9.2",
"tsc-alias": "1.8.16",
"typescript": "*",
"vitest": "3.2.4",
"vitest-mock-extended": "3.1.0",
"ws": "8.18.3"
}
}