@scheduler-systems/gal-cli 0.1.19-beta → 0.1.19

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.cjs +1316 -1271
  2. package/package.json +10 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scheduler-systems/gal-cli",
3
- "version": "0.1.19-beta",
3
+ "version": "0.1.19",
4
4
  "description": "GAL CLI - Command-line tool for managing AI agent configurations across your organization",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,
@@ -20,9 +20,11 @@
20
20
  "postinstall": "node scripts/postinstall.cjs",
21
21
  "preuninstall": "node scripts/preuninstall.cjs",
22
22
  "dev": "tsx watch src/index.ts",
23
- "build": "rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=dist/index.cjs --format=cjs --banner:js='#!/usr/bin/env node' --define:__CLI_VERSION__=\\\"$(node -p \"require('./package.json').version\")-local+$(git rev-parse --short HEAD)\\\" --define:__DEFAULT_API_URL__=\\\"http://localhost:3000\\\" && chmod +x dist/index.cjs",
24
- "build:publish": "rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node18 --minify --outfile=dist/index.cjs --format=cjs --define:__CLI_VERSION__=\\\"$(node -p \"require('./package.json').version\")\\\" --define:__DEFAULT_API_URL__=\\\"${DEFAULT_API_URL:-https://api.gal.run}\\\" && { printf '%s\\n' '#!/usr/bin/env node'; cat dist/index.cjs; } > dist/temp.cjs && mv dist/temp.cjs dist/index.cjs && chmod +x dist/index.cjs",
25
- "start": "node dist/index.js",
23
+ "prebuild": "pnpm --filter @gal/sal build",
24
+ "build": "rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=dist/index.cjs --format=cjs --external:pino --external:pino-pretty --external:thread-stream --external:keytar --banner:js='#!/usr/bin/env node' --define:__CLI_VERSION__=\\\"$(node -p \"require('./package.json').version\")-local+$(git rev-parse --short HEAD)\\\" --define:__DEFAULT_API_URL__=\\\"http://localhost:3000\\\" && chmod +x dist/index.cjs",
25
+ "prebuild:publish": "pnpm --filter @gal/sal build",
26
+ "build:publish": "rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node18 --minify --outfile=dist/index.cjs --format=cjs --external:pino --external:pino-pretty --external:thread-stream --external:keytar --banner:js='#!/usr/bin/env node' --define:__CLI_VERSION__=\\\"$(node -p \"require('./package.json').version\")\\\" --define:__DEFAULT_API_URL__=\\\"${DEFAULT_API_URL:-https://api.gal.run}\\\" && chmod +x dist/index.cjs",
27
+ "start": "node dist/index.cjs",
26
28
  "test": "vitest run --pool=forks",
27
29
  "test:watch": "vitest",
28
30
  "test:unit": "vitest run --pool=forks tests/unit/",
@@ -70,6 +72,9 @@
70
72
  "dotenv": "^16.4.7",
71
73
  "openai": "^4.77.3",
72
74
  "ora": "^8.1.1",
75
+ "pino": "^9.6.0",
76
+ "pino-pretty": "^13.0.0",
77
+ "thread-stream": "^4.0.0",
73
78
  "yaml": "^2.8.2",
74
79
  "zod": "^3.23.8"
75
80
  },
@@ -87,7 +92,7 @@
87
92
  "eslint-plugin-sonarjs": "^3.0.5",
88
93
  "fast-check": "^4.5.3",
89
94
  "globals": "^16.5.0",
90
- "node-pty": "^1.0.0",
95
+ "msw": "^2.12.4",
91
96
  "tsx": "^4.19.2",
92
97
  "typescript": "^5.7.2",
93
98
  "typescript-eslint": "^8.46.4",