mcp-git-fetcher 0.1.3 → 0.1.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.
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=entry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"entry.d.ts","sourceRoot":"","sources":["../src/entry.ts"],"names":[],"mappings":""}
package/dist/entry.js ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+ import { fileURLToPath } from "url";
3
+ import { dirname, join } from "path";
4
+ const __dirname = dirname(fileURLToPath(import.meta.url));
5
+ const cliPath = join(__dirname, "cli.js");
6
+ // Direct import — the shebang above ensures node runs this file
7
+ await import("./cli.js");
8
+ //# sourceMappingURL=entry.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"entry.js","sourceRoot":"","sources":["../src/entry.ts"],"names":[],"mappings":";AAOA,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AACpC,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AAErC,MAAM,SAAS,GAAG,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AAC1D,MAAM,OAAO,GAAG,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;AAE1C,gEAAgE;AAChE,MAAM,MAAM,CAAC,UAAU,CAAC,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ // Entry point wrapper — ensures node execution on all platforms
3
+ import("./cli.js");
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "mcp-git-fetcher",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "MCP server to fetch skills/rules files from internal GitLab repositories",
5
5
  "type": "module",
6
6
  "bin": {
7
- "mcp-git-fetcher": "./dist/cli.js"
7
+ "mcp-git-fetcher": "./dist/entry.js"
8
8
  },
9
9
  "files": [
10
10
  "dist/"