mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
54 lines
1.7 KiB
JSON
54 lines
1.7 KiB
JSON
{
|
|
"name": "@hyperdx/common-utils",
|
|
"description": "Common utilities for HyperDX application",
|
|
"version": "0.18.0",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"files": [
|
|
"dist/*"
|
|
],
|
|
"engines": {
|
|
"node": ">=22.16.0"
|
|
},
|
|
"dependencies": {
|
|
"@clickhouse/client": "^1.12.1",
|
|
"@clickhouse/client-common": "^1.12.1",
|
|
"@clickhouse/client-web": "^1.12.1",
|
|
"@hyperdx/lucene": "^3.1.1",
|
|
"date-fns": "^2.28.0",
|
|
"date-fns-tz": "^2.0.0",
|
|
"handlebars": "^4.7.9",
|
|
"lodash": "^4.17.23",
|
|
"node-sql-parser": "^5.3.5",
|
|
"object-hash": "^3.0.0",
|
|
"sql-formatter": "^15.7.2",
|
|
"sqlstring": "^2.3.3",
|
|
"zod": "3.25"
|
|
},
|
|
"devDependencies": {
|
|
"@types/hyperdx__lucene": "npm:@types/lucene@*",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/lodash": "^4.14.198",
|
|
"@types/object-hash": "^2.2.1",
|
|
"@types/sqlstring": "^2.3.0",
|
|
"dotenv": "^17.2.3",
|
|
"jest": "^30.2.0",
|
|
"nodemon": "^2.0.20",
|
|
"ts-jest": "^29.4.5",
|
|
"tsup": "^8.4.0",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"scripts": {
|
|
"dev": "nodemon --on-change-only --watch ./src --ext ts --exec \"yarn dev:build\"",
|
|
"dev:build": "tsup && tsc --emitDeclarationOnly --declaration",
|
|
"build": "tsup",
|
|
"ci:build": "tsup",
|
|
"lint": "npx eslint --quiet . --ext .ts",
|
|
"lint:fix": "npx eslint . --ext .ts --fix",
|
|
"ci:lint": "yarn lint && yarn tsc --noEmit",
|
|
"ci:unit": "jest --runInBand --ci --coverage",
|
|
"dev:unit": "jest --watchAll --runInBand",
|
|
"ci:int": "DOTENV_CONFIG_PATH=.env.test jest --config jest.int.config.js --runInBand --ci --coverage",
|
|
"dev:int": "DOTENV_CONFIG_PATH=.env.test jest --config jest.int.config.js --watchAll --runInBand"
|
|
}
|
|
}
|