-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "@jpowersdev/signoz",
"version": "1.2.0",
"description": "Command-line client for querying SigNoz observability data (logs, traces, metrics).",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jpowersdev/signoz-cli.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"bin": {
"signoz": "dist/main.js"
},
"scripts": {
"generate": "bash scripts/generate.sh",
"generated:check": "bash scripts/generate.sh --check",
"build": "tsc -p tsconfig.json",
"check": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"validate": "npm run generated:check && npm run build && npm test",
"changeset": "changeset",
"version": "changeset version && npm install --package-lock-only",
"release": "npm run validate && npm publish --access public"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@effect/openapi-generator": "^4.0.0-beta.94",
"@effect/vitest": "^4.0.0-beta.94",
"@types/node": "^24.0.0",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
},
"dependencies": {
"@effect/platform-node": "^4.0.0-beta.94",
"effect": "^4.0.0-beta.94"
}
}