livetap 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/bin/livetap.js +3 -0
  2. package/package.json +3 -3
package/bin/livetap.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env bun
2
+ // Thin wrapper — npm requires .js for bin entries
3
+ import('./livetap.ts')
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "livetap",
3
- "version": "0.1.0",
4
- "description": "Push live data streams into your AI coding agent. Connect MQTT, WebSocket, or webhooks.",
3
+ "version": "0.1.1",
4
+ "description": "Push live data streams into your AI coding agent. Connect MQTT brokers, WebSocket feeds, or tail log files.",
5
5
  "type": "module",
6
6
  "bin": {
7
- "livetap": "./bin/livetap.ts"
7
+ "livetap": "./bin/livetap.js"
8
8
  },
9
9
  "scripts": {
10
10
  "postinstall": "bun ./scripts/postinstall.ts",