Files
huly-platform/foundations/net/packages/client/package.json
T
Denis Bykhov c3eba17a7e update deps
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2025-11-26 23:24:41 +05:00

65 lines
1.8 KiB
JSON

{
"name": "@hcengineering/network-client",
"version": "0.7.10",
"main": "lib/index.js",
"types": "types/index.d.ts",
"author": "Huly Platform Contributors",
"template": "@hcengineering/node-package",
"license": "EPL-2.0",
"files": [
"lib/**/*",
"!lib/**/__test__/**",
"types/**/*",
"!types/**/__test__/**",
"src/**/*",
"!src/**/__test__/**",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "compile",
"prepublishOnly": "npm run build",
"build:watch": "compile",
"test": "jest --coverage --coverageDirectory=./coverage --passWithNoTests --forceExit",
"format": "format src",
"_phase:build": "compile transpile src",
"_phase:test": "jest --coverage --coverageDirectory=./coverage --passWithNoTests --forceExit",
"_phase:format": "format src",
"_phase:validate": "compile validate"
},
"devDependencies": {
"@hcengineering/platform-rig": "^0.7.8",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"simplytyped": "^3.3.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"@types/jest": "^29.5.5",
"@types/uuid": "^8.3.1",
"@types/node": "^22.18.1"
},
"dependencies": {
"@hcengineering/network-core": "workspace:^0.7.10",
"@hcengineering/network-backrpc": "workspace:^0.7.10",
"uuid": "^8.3.2"
},
"repository": "https://github.com/hcengineering/huly.net",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.js"
}
},
"publishConfig": {
"access": "public"
}
}