{ "name": "@hcengineering/communication-server", "version": "0.1.0", "main": "dist/index.js", "module": "dist/index.js", "types": "./types/index.d.ts", "files": [ "dist/index.js", "dist/index.cjs", "types/**/*.d.ts" ], "scripts": { "build": "bun run build:types && bun run build:node", "build:types": "tsc --project ./tsconfig.json --emitDeclarationOnly --declarationDir ./types", "build:node": "bun build src/index.ts --target node --format cjs --outfile dist/index.js", "lint": "eslint src/*.ts", "format": "prettier --write src/**/*.ts", "clean": "rm -rf dist && rm -rf types && rm -rf .turbo" }, "devDependencies": { "@types/bun": "^1.1.14", "@types/express": "^5.0.0", "@types/cors": "^2.8.17", "@types/ws": "^8.5.13" }, "dependencies": { "@hcengineering/account-client": "^0.7.88", "@hcengineering/communication-cockroach": "workspace:*", "@hcengineering/communication-sdk-types": "workspace:*", "@hcengineering/communication-types": "workspace:*", "@hcengineering/communication-yaml": "workspace:*", "@hcengineering/core": "^0.7.88", "@hcengineering/server-token": "^0.7.88", "@hcengineering/platform": "^0.7.88", "@hcengineering/text-core": "^0.7.88", "@hcengineering/text-markdown": "^0.7.88", "zod": "^3.24.2" }, "peerDependencies": { "typescript": "^5.6.3" }, "repository": { "type": "git", "url": "git+https://github.com/hcengineering/communication.git" }, "publishConfig": { "registry": "https://npm.pkg.github.com" } }