@grekt/cli 6.32.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 (4) hide show
  1. package/LICENSE +57 -0
  2. package/README.md +74 -0
  3. package/dist/index.js +96233 -0
  4. package/package.json +61 -0
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@grekt/cli",
3
+ "version": "6.32.0",
4
+ "description": "AI tools versioned, synced, and shared across tools and teams",
5
+ "type": "module",
6
+ "bin": {
7
+ "grekt": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist/**"
11
+ ],
12
+ "publishConfig": {
13
+ "access": "public",
14
+ "registry": "https://registry.npmjs.org/"
15
+ },
16
+ "imports": {
17
+ "#/*": "./src/*"
18
+ },
19
+ "scripts": {
20
+ "dev": "bun run src/index.ts",
21
+ "build": "bun build src/index.ts --outdir dist --target node",
22
+ "build:linux": "bun build src/index.ts --compile --outfile dist/grekt-linux-x64",
23
+ "build:mac-arm": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile dist/grekt-macos-arm64",
24
+ "build:mac-intel": "bun build src/index.ts --compile --target=bun-darwin-x64 --outfile dist/grekt-macos-x64",
25
+ "build:windows": "bun build src/index.ts --compile --target=bun-windows-x64 --outfile dist/grekt-windows.exe",
26
+ "build:all": "bun run typecheck && bun run build:linux && bun run build:mac-arm && bun run build:mac-intel && bun run build:windows",
27
+ "deploy": "bun run scripts/deploy.ts",
28
+ "release": "bun run build:all && bun run deploy",
29
+ "typecheck": "tsc --noEmit",
30
+ "test": "bun test",
31
+ "test:watch": "bun test --watch",
32
+ "test:coverage": "bun test --coverage",
33
+ "test:e2e": "bun test spec/",
34
+ "test:e2e:watch": "bun test spec/ --watch"
35
+ },
36
+ "dependencies": {
37
+ "@aws-sdk/client-s3": "^3.971.0",
38
+ "@grekt-labs/cli-engine": "5.25.0",
39
+ "@inquirer/prompts": "^7.2.0",
40
+ "@supabase/supabase-js": "^2.91.0",
41
+ "chalk": "^5.4.1",
42
+ "commander": "^12.1.0",
43
+ "fast-glob": "^3.3.3",
44
+ "gray-matter": "^4.0.3",
45
+ "ora": "^8.1.1",
46
+ "yaml": "^2.6.1",
47
+ "zod": "^3.24.1"
48
+ },
49
+ "devDependencies": {
50
+ "@semantic-release/changelog": "^6.0.3",
51
+ "@semantic-release/git": "^10.0.1",
52
+ "@types/node": "^22.10.5",
53
+ "bun-types": "^1.3.6",
54
+ "semantic-release": "^25.0.2",
55
+ "typescript": "^5.7.2"
56
+ },
57
+ "engines": {
58
+ "node": ">=18.0.0"
59
+ },
60
+ "license": "BUSL-1.1"
61
+ }