gajae-code 0.1.1

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/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ## [0.1.1] - 2026-05-28
6
+
7
+ - Added the unscoped `gajae-code` npm wrapper for one-line `gjc` installs.
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # gajae-code
2
+
3
+ One-line npm package for the Gajae-Code `gjc` CLI.
4
+
5
+ ```sh
6
+ bun install -g gajae-code
7
+ ```
8
+
9
+ This package is a thin public wrapper around `@gajae-code/coding-agent` so users can install the CLI without typing the npm organization scope.
package/bin/gjc.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env bun
2
+ import "@gajae-code/coding-agent/cli";
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "type": "module",
3
+ "name": "gajae-code",
4
+ "version": "0.1.1",
5
+ "description": "One-line npm install wrapper for the Gajae-Code gjc CLI",
6
+ "homepage": "https://gajae-code.dev",
7
+ "author": "Can Boluk",
8
+ "contributors": [
9
+ "Mario Zechner"
10
+ ],
11
+ "license": "MIT",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/gajae-ai/gajae-code.git",
15
+ "directory": "packages/gajae-code"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/gajae-ai/gajae-code/issues"
19
+ },
20
+ "keywords": [
21
+ "coding-agent",
22
+ "ai",
23
+ "llm",
24
+ "cli",
25
+ "tui",
26
+ "agent",
27
+ "gjc"
28
+ ],
29
+ "bin": {
30
+ "gjc": "bin/gjc.js"
31
+ },
32
+ "dependencies": {
33
+ "@gajae-code/coding-agent": "catalog:"
34
+ },
35
+ "engines": {
36
+ "bun": ">=1.3.14"
37
+ },
38
+ "files": [
39
+ "bin",
40
+ "README.md",
41
+ "CHANGELOG.md"
42
+ ]
43
+ }