loopsy 1.0.3 → 1.0.4

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/dist/cli/index.js CHANGED
@@ -86,6 +86,6 @@ yargs(hideBin(process.argv))
86
86
  .command('doctor', 'Run health checks on your Loopsy installation', {}, doctorCommand)
87
87
  .demandCommand(1, 'You need at least one command')
88
88
  .help()
89
- .version('1.0.3')
89
+ .version('1.0.4')
90
90
  .parse();
91
91
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loopsy",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Cross-machine communication for Claude Code — run commands, transfer files, and share context between machines",
5
5
  "type": "module",
6
6
  "bin": {
@@ -38,7 +38,7 @@ for (const stub of stubs) {
38
38
  join(stubDir, 'package.json'),
39
39
  JSON.stringify({
40
40
  name: `@loopsy/${stub.name}`,
41
- version: '1.0.3',
41
+ version: '1.0.4',
42
42
  type: 'module',
43
43
  main: 'index.js',
44
44
  exports: { '.': './index.js' },