codetyper-cli 0.1.75 → 0.1.76
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 +11 -3
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/src/version.json +1 -1
package/README.md
CHANGED
|
@@ -52,10 +52,18 @@ Over time, CodeTyper learns which provider performs best for different task type
|
|
|
52
52
|
|
|
53
53
|
## Installation
|
|
54
54
|
|
|
55
|
+
**Requires [Bun](https://bun.sh) runtime** (v1.0.0+)
|
|
56
|
+
|
|
55
57
|
```bash
|
|
56
|
-
#
|
|
57
|
-
|
|
58
|
-
|
|
58
|
+
# Install Bun if you don't have it
|
|
59
|
+
curl -fsSL https://bun.sh/install | bash
|
|
60
|
+
|
|
61
|
+
# Install globally via npm
|
|
62
|
+
npm install -g codetyper-cli
|
|
63
|
+
|
|
64
|
+
# Or install from source
|
|
65
|
+
git clone https://github.com/CarGDev/codetyper.cli.git
|
|
66
|
+
cd codetyper.cli
|
|
59
67
|
bun install && bun run build && bun link
|
|
60
68
|
|
|
61
69
|
# Login to a provider
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codetyper-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.76",
|
|
4
4
|
"description": "CodeTyper AI Agent - Standalone CLI for autonomous code generation",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -95,6 +95,6 @@
|
|
|
95
95
|
"vitest": "^4.0.17"
|
|
96
96
|
},
|
|
97
97
|
"engines": {
|
|
98
|
-
"
|
|
98
|
+
"bun": ">=1.0.0"
|
|
99
99
|
}
|
|
100
100
|
}
|
package/src/version.json
CHANGED