dlw-machine-setup 0.2.1 → 0.2.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/bin/installer.js +2 -2
  2. package/package.json +1 -1
package/bin/installer.js CHANGED
@@ -3709,7 +3709,7 @@ var mcp_servers_default = {
3709
3709
  function getAgentMCPTarget(agent) {
3710
3710
  switch (agent) {
3711
3711
  case "claude-code":
3712
- return { filePath: "mcp.json", rootKey: "mcpServers", dir: null };
3712
+ return { filePath: ".mcp.json", rootKey: "mcpServers", dir: null };
3713
3713
  case "cursor":
3714
3714
  return { filePath: ".cursor/mcp.json", rootKey: "mcpServers", dir: ".cursor" };
3715
3715
  case "github-copilot":
@@ -3891,7 +3891,7 @@ function getInstructionFilePath(agent) {
3891
3891
  function getMCPConfigPath(agent) {
3892
3892
  switch (agent) {
3893
3893
  case "claude-code":
3894
- return "mcp.json";
3894
+ return ".mcp.json";
3895
3895
  case "cursor":
3896
3896
  return ".cursor/mcp.json";
3897
3897
  case "github-copilot":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dlw-machine-setup",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "One-shot installer for The Machine toolchain",
5
5
  "bin": {
6
6
  "dlw-machine-setup": "bin/installer.js"