Files
plane/apps/live/package.json
T
sriram veeraghanta 3f57fefdb4 chore: move all dependencies into pnpm catalog (#9153)
Centralize every external dependency version in the pnpm catalog
(pnpm-workspace.yaml) and reference them via `catalog:` across all
apps and packages. Packages that previously used differing versions
were unified to the highest (notably @react-pdf/renderer ^3.4.5 ->
^4.3.0 in apps/web).
2026-05-31 15:56:12 +05:30

82 lines
2.5 KiB
JSON

{
"name": "live",
"version": "1.3.1",
"private": true,
"description": "A realtime collaborative server powers Plane's rich text editor",
"license": "AGPL-3.0",
"author": "Plane Software Inc.",
"type": "module",
"main": "./dist/start.mjs",
"module": "./dist/start.mjs",
"exports": {
".": "./dist/start.mjs",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc --noEmit && tsdown",
"dev": "tsdown --watch --no-clean --onSuccess \"node --env-file=.env .\"",
"start": "node --env-file=.env .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"check:lint": "oxlint --max-warnings=119 .",
"check:types": "tsc --noEmit",
"check:format": "oxfmt --check .",
"fix:lint": "oxlint --fix .",
"fix:format": "oxfmt .",
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@effect/platform": "catalog:",
"@effect/platform-node": "catalog:",
"@fontsource/inter": "catalog:",
"@hocuspocus/extension-database": "catalog:",
"@hocuspocus/extension-logger": "catalog:",
"@hocuspocus/extension-redis": "catalog:",
"@hocuspocus/server": "catalog:",
"@hocuspocus/transformer": "catalog:",
"@plane/decorators": "workspace:*",
"@plane/editor": "workspace:*",
"@plane/logger": "workspace:*",
"@plane/types": "workspace:*",
"@plane/utils": "workspace:*",
"@react-pdf/renderer": "catalog:",
"@react-pdf/types": "catalog:",
"@tiptap/core": "catalog:",
"@tiptap/html": "catalog:",
"axios": "catalog:",
"compression": "catalog:",
"cors": "catalog:",
"dotenv": "catalog:",
"effect": "catalog:",
"express": "catalog:",
"express-ws": "catalog:",
"helmet": "catalog:",
"ioredis": "catalog:",
"react": "catalog:",
"sharp": "catalog:",
"uuid": "catalog:",
"ws": "catalog:",
"y-prosemirror": "catalog:",
"y-protocols": "catalog:",
"yjs": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@plane/typescript-config": "workspace:*",
"@types/compression": "catalog:",
"@types/cors": "catalog:",
"@types/express": "catalog:",
"@types/express-ws": "catalog:",
"@types/node": "catalog:",
"@types/pdf-parse": "catalog:",
"@types/react": "catalog:",
"@types/ws": "catalog:",
"@vitest/coverage-v8": "catalog:",
"pdf-parse": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}