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 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
- # Clone and install
57
- git clone https://github.com/your-username/codetyper-cli.git
58
- cd codetyper-cli
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
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env bun
2
2
  import { createRequire } from "node:module";
3
3
  var __create = Object.create;
4
4
  var __getProtoOf = Object.getPrototypeOf;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codetyper-cli",
3
- "version": "0.1.75",
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
- "node": ">=18.0.0"
98
+ "bun": ">=1.0.0"
99
99
  }
100
100
  }
package/src/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "0.1.75"
2
+ "version": "0.1.76"
3
3
  }