@scheduler-systems/gal 0.1.1-beta
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 +100 -0
- package/dist/index.cjs +2 -0
- package/package.json +103 -0
- package/scripts/postinstall.cjs +694 -0
- package/scripts/preuninstall.cjs +149 -0
package/package.json
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@scheduler-systems/gal",
|
|
3
|
+
"version": "0.1.1-beta",
|
|
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
|
+
"scripts": {
|
|
20
|
+
"postinstall": "node scripts/postinstall.cjs",
|
|
21
|
+
"preuninstall": "node scripts/preuninstall.cjs",
|
|
22
|
+
"dev": "tsx watch src/index.ts",
|
|
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 --external:@gal/sal --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 --external:@gal/sal --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",
|
|
27
|
+
"start": "node dist/index.cjs",
|
|
28
|
+
"test": "vitest run --pool=forks",
|
|
29
|
+
"test:watch": "vitest",
|
|
30
|
+
"test:unit": "vitest run --pool=forks tests/unit/",
|
|
31
|
+
"test:e2e": "vitest run --pool=forks tests/e2e/",
|
|
32
|
+
"test:mutation": "stryker run",
|
|
33
|
+
"test:mutation:incremental": "stryker run --incremental",
|
|
34
|
+
"test:coverage": "vitest run --coverage",
|
|
35
|
+
"type-check": "tsc --noEmit",
|
|
36
|
+
"prepublishOnly": "npm run build:publish",
|
|
37
|
+
"clean": "rm -rf dist"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"gal",
|
|
41
|
+
"governance",
|
|
42
|
+
"ai",
|
|
43
|
+
"agent",
|
|
44
|
+
"cli",
|
|
45
|
+
"configuration",
|
|
46
|
+
"claude",
|
|
47
|
+
"cursor",
|
|
48
|
+
"windsurf",
|
|
49
|
+
"gemini",
|
|
50
|
+
"codex"
|
|
51
|
+
],
|
|
52
|
+
"author": "Scheduler Systems",
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "https://github.com/Scheduler-Systems/gal.git",
|
|
56
|
+
"directory": "apps/cli"
|
|
57
|
+
},
|
|
58
|
+
"bugs": {
|
|
59
|
+
"url": "https://github.com/Scheduler-Systems/gal/issues"
|
|
60
|
+
},
|
|
61
|
+
"homepage": "https://github.com/Scheduler-Systems/gal#readme",
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=18.0.0"
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@anthropic-ai/sdk": "^0.32.1",
|
|
67
|
+
"@e2b/code-interpreter": "^1.0.4",
|
|
68
|
+
"@google-cloud/vertexai": "^1.10.0",
|
|
69
|
+
"@octokit/rest": "^21.0.2",
|
|
70
|
+
"chalk": "^5.4.1",
|
|
71
|
+
"commander": "^12.1.0",
|
|
72
|
+
"dotenv": "^16.4.7",
|
|
73
|
+
"openai": "^4.77.3",
|
|
74
|
+
"ora": "^8.1.1",
|
|
75
|
+
"pino": "^9.6.0",
|
|
76
|
+
"pino-pretty": "^13.0.0",
|
|
77
|
+
"thread-stream": "^4.0.0",
|
|
78
|
+
"yaml": "^2.8.2",
|
|
79
|
+
"zod": "^3.23.8"
|
|
80
|
+
},
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@eslint/js": "^9.39.1",
|
|
83
|
+
"@gal/types": "workspace:*",
|
|
84
|
+
"@stryker-mutator/core": "^9.4.0",
|
|
85
|
+
"@stryker-mutator/typescript-checker": "^9.4.0",
|
|
86
|
+
"@stryker-mutator/vitest-runner": "^9.4.0",
|
|
87
|
+
"@types/node": "^22.10.2",
|
|
88
|
+
"@vitest/coverage-v8": "^4.0.16",
|
|
89
|
+
"esbuild": "^0.24.0",
|
|
90
|
+
"eslint": "^9.39.2",
|
|
91
|
+
"eslint-plugin-security": "^3.0.1",
|
|
92
|
+
"eslint-plugin-sonarjs": "^3.0.5",
|
|
93
|
+
"fast-check": "^4.5.3",
|
|
94
|
+
"globals": "^16.5.0",
|
|
95
|
+
"msw": "^2.12.4",
|
|
96
|
+
"tsx": "^4.19.2",
|
|
97
|
+
"typescript": "^5.7.2",
|
|
98
|
+
"typescript-eslint": "^8.46.4",
|
|
99
|
+
"vitest": "^4.0.16",
|
|
100
|
+
"javascript-obfuscator": "^4.1.1",
|
|
101
|
+
"postject": "^1.0.0-alpha.6"
|
|
102
|
+
}
|
|
103
|
+
}
|