slacklocalvibe 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slacklocalvibe",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "SlackLocalVibe: Codex/Claude Code turn notifications and reply→resume bridge for Slack DM (Socket Mode)",
5
5
  "bin": {
6
6
  "slacklocalvibe": "src/cli.js"
package/src/cli.js CHANGED
@@ -4,13 +4,14 @@ const { runWizard } = require("./commands/wizard");
4
4
  const { runNotify } = require("./commands/notify");
5
5
  const { runDaemon } = require("./commands/daemon");
6
6
  const { runLaunchd } = require("./commands/launchd");
7
+ const packageJson = require("../package.json");
7
8
 
8
9
  const program = new Command();
9
10
 
10
11
  program
11
12
  .name("slacklocalvibe")
12
13
  .description("SlackLocalVibe: Slack DM通知 + 返信resumeブリッジ")
13
- .version("0.1.0");
14
+ .version(packageJson.version);
14
15
 
15
16
  program
16
17
  .command("notify")