Files
huly-platform/packages/server/package.json
T
2025-04-16 09:59:50 +04:00

47 lines
1.4 KiB
JSON

{
"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.28",
"@hcengineering/communication-cockroach": "workspace:*",
"@hcengineering/communication-sdk-types": "workspace:*",
"@hcengineering/communication-types": "workspace:*",
"@hcengineering/core": "^0.7.28",
"@hcengineering/server-token": "^0.7.28",
"@hcengineering/platform": "^0.7.28",
"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"
}
}