codetyper-cli 0.1.74 → 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;
@@ -44264,7 +44264,7 @@ var init_mcp = __esm(() => {
44264
44264
  var version_default;
44265
44265
  var init_version = __esm(() => {
44266
44266
  version_default = {
44267
- version: "0.1.74"
44267
+ version: "0.1.75"
44268
44268
  };
44269
44269
  });
44270
44270
 
@@ -104283,4 +104283,4 @@ ${plan.steps.map((s) => `${s.id}. ${s.description}`).join(`
104283
104283
  });
104284
104284
  program2.parse(process.argv);
104285
104285
 
104286
- //# debugId=59E0075414C832A564756E2164756E21
104286
+ //# debugId=292EBD5525B36A8464756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codetyper-cli",
3
- "version": "0.1.74",
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": {
@@ -36,11 +36,11 @@
36
36
  "license": "MIT",
37
37
  "repository": {
38
38
  "type": "git",
39
- "url": "git+https://github.com/CarGDev/codetyper.nvim.git"
39
+ "url": "git+https://github.com/CarGDev/codetyper.cli.git"
40
40
  },
41
- "homepage": "https://github.com/CarGDev/codetyper.nvim#readme",
41
+ "homepage": "https://github.com/CarGDev/codetyper.cli#readme",
42
42
  "bugs": {
43
- "url": "https://github.com/CarGDev/codetyper.nvim/issues"
43
+ "url": "https://github.com/CarGDev/codetyper.cli/issues"
44
44
  },
45
45
  "files": [
46
46
  "dist/**/*.js",
@@ -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.74"
2
+ "version": "0.1.76"
3
3
  }