mcp-voice-hooks 1.0.0 → 1.0.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.
package/bin/cli.js CHANGED
@@ -149,10 +149,10 @@ async function configureClaudeCodeSettings() {
149
149
 
150
150
  // Run the MCP server
151
151
  async function runMCPServer() {
152
- const serverPath = path.join(__dirname, '..', 'src', 'unified-server.ts');
152
+ const serverPath = path.join(__dirname, '..', 'dist', 'unified-server.js');
153
153
 
154
- // Use ts-node to run the TypeScript server
155
- const child = spawn('npx', ['ts-node', '--esm', serverPath, '--mcp-managed'], {
154
+ // Run the compiled JavaScript server
155
+ const child = spawn('node', [serverPath, '--mcp-managed'], {
156
156
  stdio: 'inherit',
157
157
  cwd: path.join(__dirname, '..')
158
158
  });
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-voice-hooks",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "bin": {
@@ -63,4 +63,4 @@
63
63
  "tsup": "^8.5.0",
64
64
  "typescript": "^5.8.3"
65
65
  }
66
- }
66
+ }