@thegitai/cli 1.0.0-beta.1 → 1.0.0-beta.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/README.md +3 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ reads code, edits files, and runs commands with your approval.
|
|
|
9
9
|
npm i -g @thegitai/cli
|
|
10
10
|
```
|
|
11
11
|
|
|
12
|
-
Requires Node.js 24.
|
|
12
|
+
Requires Node.js 24 or newer.
|
|
13
13
|
|
|
14
14
|
## Usage
|
|
15
15
|
|
|
@@ -26,5 +26,5 @@ Run `ai --help` for sessions, modes, keys, and chat commands.
|
|
|
26
26
|
|
|
27
27
|
## License
|
|
28
28
|
|
|
29
|
-
Proprietary — see
|
|
30
|
-
copying and redistribution are not permitted.
|
|
29
|
+
Proprietary — see the LICENSE file included in this package. Source is
|
|
30
|
+
visible for inspection; copying and redistribution are not permitted.
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thegitai/cli",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
4
4
|
"description": "TheGitAI CLI client (source-visible, proprietary)",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"homepage": "https://thegit.ai",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"engines": {
|
|
9
|
-
"node": ">=24
|
|
9
|
+
"node": ">=24"
|
|
10
10
|
},
|
|
11
11
|
"bin": {
|
|
12
12
|
"ai": "./dist/bin/ai.js"
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"web-tree-sitter": "^0.26.6"
|
|
28
28
|
},
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@thegitai/tui-darwin-arm64": "1.0.0-beta.
|
|
31
|
-
"@thegitai/tui-darwin-x64": "1.0.0-beta.
|
|
32
|
-
"@thegitai/tui-linux-x64": "1.0.0-beta.
|
|
33
|
-
"@thegitai/tui-win32-x64": "1.0.0-beta.
|
|
30
|
+
"@thegitai/tui-darwin-arm64": "1.0.0-beta.2",
|
|
31
|
+
"@thegitai/tui-darwin-x64": "1.0.0-beta.2",
|
|
32
|
+
"@thegitai/tui-linux-x64": "1.0.0-beta.2",
|
|
33
|
+
"@thegitai/tui-win32-x64": "1.0.0-beta.2"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|