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

43 lines
1.2 KiB
JSON

{
"name": "@hcengineering/communication-query",
"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:browser",
"build:types": "tsc --project ./tsconfig.json --emitDeclarationOnly --declarationDir ./types",
"build:browser": "bun build src/index.ts --outdir dist --target browser",
"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/crypto-js": "^4.2.2"
},
"dependencies": {
"@hcengineering/communication-sdk-types": "workspace:*",
"@hcengineering/communication-shared": "workspace:*",
"@hcengineering/communication-types": "workspace:*",
"@hcengineering/communication-yaml": "workspace:*",
"fast-equals": "^5.0.1",
"uuid": "^11.1.0"
},
"peerDependencies": {
"typescript": "^5.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hcengineering/communication.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}