hyperdx/packages/cli/package.json
github-actions[bot] bfb455d90a
Release HyperDX (#2094)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-04-10 11:08:49 -07:00

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"
}
}