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 +7 -0
- package/README.md +9 -0
- package/bin/gjc.js +2 -0
- package/package.json +43 -0
package/CHANGELOG.md
ADDED
package/README.md
ADDED
package/bin/gjc.js
ADDED
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
|
+
}
|