@scheduler-systems/gal-cli 0.1.2
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/LICENSE +14 -0
- package/README.md +157 -0
- package/dist/index.cjs +945 -0
- package/package.json +73 -0
package/package.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@scheduler-systems/gal-cli",
|
|
3
|
+
"version": "0.1.02",
|
|
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
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"dev": "tsx watch src/index.ts",
|
|
19
|
+
"build": "tsc && chmod +x dist/index.js",
|
|
20
|
+
"build:publish": "rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node18 --minify --outfile=dist/index.cjs --format=cjs && sed -i '' '1s/^#!.*$//' dist/index.cjs && 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",
|
|
21
|
+
"start": "node dist/index.js",
|
|
22
|
+
"test": "vitest run",
|
|
23
|
+
"test:watch": "vitest",
|
|
24
|
+
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
25
|
+
"type-check": "tsc --noEmit",
|
|
26
|
+
"prepublishOnly": "npm run build:publish",
|
|
27
|
+
"clean": "rm -rf dist"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"gal",
|
|
31
|
+
"governance",
|
|
32
|
+
"ai",
|
|
33
|
+
"agent",
|
|
34
|
+
"cli",
|
|
35
|
+
"configuration",
|
|
36
|
+
"claude",
|
|
37
|
+
"cursor",
|
|
38
|
+
"windsurf",
|
|
39
|
+
"gemini",
|
|
40
|
+
"codex"
|
|
41
|
+
],
|
|
42
|
+
"author": "Scheduler Systems",
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "https://github.com/Scheduler-Systems/gal.git",
|
|
46
|
+
"directory": "apps/cli"
|
|
47
|
+
},
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/Scheduler-Systems/gal/issues"
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://github.com/Scheduler-Systems/gal#readme",
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=18.0.0"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@anthropic-ai/sdk": "^0.32.1",
|
|
57
|
+
"@e2b/code-interpreter": "^1.0.4",
|
|
58
|
+
"@octokit/rest": "^21.0.2",
|
|
59
|
+
"chalk": "^5.4.1",
|
|
60
|
+
"commander": "^12.1.0",
|
|
61
|
+
"dotenv": "^16.4.7",
|
|
62
|
+
"openai": "^4.77.3",
|
|
63
|
+
"ora": "^8.1.1"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@gal/types": "workspace:*",
|
|
67
|
+
"@types/node": "^22.10.2",
|
|
68
|
+
"esbuild": "^0.24.0",
|
|
69
|
+
"tsx": "^4.19.2",
|
|
70
|
+
"typescript": "^5.7.2",
|
|
71
|
+
"vitest": "^1.0.0"
|
|
72
|
+
}
|
|
73
|
+
}
|