@scheduler-systems/gal-run 0.0.197

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.
package/package.json ADDED
@@ -0,0 +1,107 @@
1
+ {
2
+ "name": "@scheduler-systems/gal-run",
3
+ "version": "0.0.197",
4
+ "description": "GAL CLI - Command-line tool for managing AI agent configurations across your organization",
5
+ "license": "UNLICENSED",
6
+ "private": false,
7
+ "type": "module",
8
+ "main": "./dist/index.cjs",
9
+ "bin": {
10
+ "gal": "dist/index.cjs"
11
+ },
12
+ "files": [
13
+ "dist/index.cjs",
14
+ "scripts/postinstall.cjs",
15
+ "scripts/preuninstall.cjs",
16
+ "README.md",
17
+ "LICENSE"
18
+ ],
19
+ "keywords": [
20
+ "gal",
21
+ "governance",
22
+ "ai",
23
+ "agent",
24
+ "cli",
25
+ "configuration",
26
+ "claude",
27
+ "cursor",
28
+ "windsurf",
29
+ "gemini",
30
+ "codex"
31
+ ],
32
+ "author": "Scheduler Systems",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "git+https://github.com/Scheduler-Systems/gal-run.git",
36
+ "directory": "apps/cli"
37
+ },
38
+ "bugs": {
39
+ "url": "https://github.com/Scheduler-Systems/gal-run/issues"
40
+ },
41
+ "homepage": "https://gal.run",
42
+ "engines": {
43
+ "node": ">=20.0.0"
44
+ },
45
+ "dependencies": {
46
+ "@anthropic-ai/sdk": "^0.32.1",
47
+ "@e2b/code-interpreter": "^1.0.4",
48
+ "@google-cloud/vertexai": "^1.10.0",
49
+ "@octokit/rest": "^21.0.2",
50
+ "chalk": "^5.4.1",
51
+ "commander": "^12.1.0",
52
+ "dotenv": "^16.4.7",
53
+ "openai": "^4.77.3",
54
+ "ora": "^8.1.1",
55
+ "pino": "^9.6.0",
56
+ "pino-pretty": "^13.0.0",
57
+ "thread-stream": "^4.0.0",
58
+ "yaml": "^2.8.2",
59
+ "zod": "^3.23.8"
60
+ },
61
+ "optionalDependencies": {
62
+ "node-pty": "^1.1.0"
63
+ },
64
+ "devDependencies": {
65
+ "@eslint/js": "^9.39.1",
66
+ "@sentry/node": "^9.0.0",
67
+ "@stryker-mutator/core": "^9.4.0",
68
+ "@stryker-mutator/typescript-checker": "^9.4.0",
69
+ "@stryker-mutator/vitest-runner": "^9.4.0",
70
+ "@types/node": "^22.10.2",
71
+ "@vitest/coverage-v8": "^4.0.16",
72
+ "esbuild": "^0.24.0",
73
+ "eslint": "^9.39.2",
74
+ "eslint-plugin-security": "^3.0.1",
75
+ "eslint-plugin-sonarjs": "^3.0.5",
76
+ "fast-check": "^4.5.3",
77
+ "globals": "^16.5.0",
78
+ "javascript-obfuscator": "^4.1.1",
79
+ "msw": "^2.12.4",
80
+ "postject": "^1.0.0-alpha.6",
81
+ "tsx": "^4.19.2",
82
+ "typescript": "^5.7.2",
83
+ "typescript-eslint": "^8.46.4",
84
+ "vitest": "^4.0.16",
85
+ "@gal/api": "0.0.76",
86
+ "@gal/core": "0.0.76",
87
+ "@gal/telemetry": "0.0.76",
88
+ "@gal/types": "0.0.76"
89
+ },
90
+ "scripts": {
91
+ "postinstall": "node scripts/postinstall.cjs",
92
+ "preuninstall": "node scripts/preuninstall.cjs",
93
+ "dev": "tsx watch src/index.ts",
94
+ "build": "rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node20 --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",
95
+ "build:publish": "rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node20 --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 && node scripts/obfuscate.js",
96
+ "start": "node dist/index.cjs",
97
+ "test": "vitest run --pool=forks",
98
+ "test:watch": "vitest",
99
+ "test:unit": "vitest run --pool=forks tests/unit/",
100
+ "test:e2e": "vitest run --pool=forks tests/e2e/",
101
+ "test:mutation": "stryker run",
102
+ "test:mutation:incremental": "stryker run --incremental",
103
+ "test:coverage": "vitest run --coverage",
104
+ "type-check": "tsc --noEmit",
105
+ "clean": "rm -rf dist"
106
+ }
107
+ }