@sazabiai/cli 0.0.7 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +50 -100
  2. package/package.json +25 -1
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@sazabiai/cli",
3
3
  "description": "Command-line interface for the Sazabi observability platform",
4
- "version": "0.0.7",
4
+ "version": "0.1.0",
5
+ "private": false,
5
6
  "type": "module",
6
7
  "bin": {
7
8
  "sazabi": "./dist/index.js"
@@ -19,5 +20,28 @@
19
20
  "license": "UNLICENSED",
20
21
  "publishConfig": {
21
22
  "access": "restricted"
23
+ },
24
+ "dependencies": {},
25
+ "devDependencies": {
26
+ "@sazabi/cli-utils": "workspace:*",
27
+ "@sazabi/otlp-contracts": "workspace:*",
28
+ "@sazabi/public-api-contracts": "workspace:*",
29
+ "@sazabi/tail-ws-contracts": "workspace:*",
30
+ "@sazabi/tsconfig": "workspace:*",
31
+ "@biomejs/biome": "^2.4.2",
32
+ "@types/node": "^25.2.3",
33
+ "@typescript/native-preview": "7.0.0-dev.20260220.1",
34
+ "vitest": "^2.1.8"
35
+ },
36
+ "scripts": {
37
+ "build": "tsgo",
38
+ "build:bundle": "bun build ./src/index.ts --outfile dist/index.js --target node --minify",
39
+ "clean": "rm -rf dist",
40
+ "test": "vitest run",
41
+ "test:watch": "vitest",
42
+ "typecheck": "tsgo --noEmit",
43
+ "check": "biome check .",
44
+ "check:fix": "biome check --write .",
45
+ "prepublishOnly": "bun run build:bundle"
22
46
  }
23
47
  }