Added: - ✨AI to doc editor - ✨(backend) allow uploading more types of attachments - ✨(frontend) add buttons to copy document to clipboard as HTML/Markdown Changed: - ♻️(frontend) More multi theme friendly - ♻️ Bootstrap frontend - ♻️ Add username in email Fixed: - 🛂(backend) do not duplicate user when disabled - 🐛(frontend) invalidate queries after removing user - 🐛(backend) Fix dysfunctional permissions on document create - 🐛(backend) fix nginx docker container - 🐛(frontend) fix copy paste firefox
30 lines
669 B
JSON
30 lines
669 B
JSON
{
|
|
"name": "server-y-provider",
|
|
"version": "1.6.0",
|
|
"description": "Y.js provider for docs",
|
|
"repository": "https://github.com/numerique-gouv/impress",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc -p .",
|
|
"dev": "nodemon --config nodemon.json",
|
|
"start": "node ./dist/server.js",
|
|
"lint": "eslint . --ext .ts"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"dependencies": {
|
|
"@hocuspocus/server": "2.13.7",
|
|
"y-protocols": "1.0.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "*",
|
|
"eslint-config-impress": "*",
|
|
"nodemon": "3.1.7",
|
|
"ts-jest": "29.2.5",
|
|
"ts-node": "10.9.2",
|
|
"typescript": "*"
|
|
}
|
|
}
|