wraptc 1.0.1 → 1.0.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 CHANGED
@@ -15,16 +15,20 @@ A unified CLI wrapper for multiple coding AI agents (Gemini CLI, OpenCode, Qwen
15
15
 
16
16
  ## Installation
17
17
 
18
+ **Requires: [Bun](https://bun.sh/) runtime**
19
+
18
20
  ```bash
19
- # Clone and build
21
+ # Install via npm (requires Bun to be installed)
22
+ npm install -g wraptc
23
+
24
+ # Or install via bun
25
+ bun install -g wraptc
26
+
27
+ # Or clone and build from source
20
28
  git clone https://github.com/briansunter/wraptc.git
21
29
  cd wraptc
22
30
  bun install
23
31
  bun run build
24
-
25
- # Install globally
26
- npm link
27
- # or
28
32
  bun link
29
33
  ```
30
34
 
package/bin/wraptc CHANGED
@@ -1,7 +1,4 @@
1
- #!/usr/bin/env node
2
-
3
- import { createRequire } from 'module';
4
- const require = createRequire(import.meta.url);
1
+ #!/usr/bin/env bun
5
2
 
6
3
  const args = process.argv.slice(2);
7
4
 
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wraptc",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Unified CLI wrapper for multiple coding AI agents with intelligent routing",
5
5
  "type": "module",
6
6
  "main": "./dist/core/index.js",
Binary file