mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "@hyperdx/cli",
|
|
"version": "0.2.1",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"bin": {
|
|
"hdx": "./dist/cli.js"
|
|
},
|
|
"files": [
|
|
"dist/*"
|
|
],
|
|
"engines": {
|
|
"node": ">=22.16.0",
|
|
"bun": "1.3.11"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsx src/cli.tsx",
|
|
"build": "tsup",
|
|
"prepublishOnly": "yarn build",
|
|
"compile": "bun build src/cli.tsx --compile --outfile dist/hdx",
|
|
"compile:linux": "bun build src/cli.tsx --compile --target=bun-linux-x64 --outfile dist/hdx-linux-x64",
|
|
"compile:macos": "bun build src/cli.tsx --compile --target=bun-darwin-arm64 --outfile dist/hdx-darwin-arm64",
|
|
"compile:macos-x64": "bun build src/cli.tsx --compile --target=bun-darwin-x64 --outfile dist/hdx-darwin-x64"
|
|
},
|
|
"devDependencies": {
|
|
"@clickhouse/client": "^1.12.1",
|
|
"@clickhouse/client-common": "^1.12.1",
|
|
"@hyperdx/common-utils": "^0.17.1",
|
|
"@types/crypto-js": "^4.2.2",
|
|
"@types/react": "^19.0.0",
|
|
"@types/sqlstring": "^2.3.2",
|
|
"chalk": "^5.3.0",
|
|
"commander": "^12.1.0",
|
|
"crypto-js": "^4.2.0",
|
|
"glob": "^13.0.6",
|
|
"ink": "6.8.0",
|
|
"ink-spinner": "^5.0.0",
|
|
"ink-text-input": "^6.0.0",
|
|
"react": "^19.0.0",
|
|
"react-devtools-core": "^7.0.1",
|
|
"sqlstring": "^2.3.3",
|
|
"tsup": "^8.4.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|