-
Notifications
You must be signed in to change notification settings - Fork 459
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@hyperdx/cli",
"version": "0.6.2",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hyperdxio/hyperdx.git",
"directory": "packages/cli"
},
"homepage": "https://github.com/hyperdxio/hyperdx/tree/main/packages/cli#readme",
"bugs": {
"url": "https://github.com/hyperdxio/hyperdx/issues"
},
"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",
"lint": "npx eslint . --ext .ts,.tsx --max-warnings 0",
"ci:build": "tsup",
"ci:lint": "yarn lint && yarn tsc --noEmit",
"ci:unit": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand --ci --passWithNoTests",
"dev:unit": "NODE_OPTIONS=--experimental-vm-modules jest --watchAll --runInBand"
},
"devDependencies": {
"@clickhouse/client": "1.23.0-head.fae5998.1",
"@hyperdx/common-utils": "^0.28.0",
"@jest/globals": "^30.2.0",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.14",
"@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",
"jest": "^30.2.0",
"numbro": "^2.5.0",
"react": "^19.0.0",
"react-devtools-core": "^7.0.1",
"sqlstring": "^2.3.3",
"ts-jest": "^29.4.11",
"tsup": "^8.4.0",
"tsx": "^4.19.0",
"typescript": "^6.0.3"
}
}