@ng-annotate/mcp-server 0.1.4 → 0.1.6
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/ng-annotate-mcp.js +8 -0
- package/dist/index.js +0 -0
- package/package.json +4 -3
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Entry point for the ng-annotate-mcp binary.
|
|
3
|
+
// The shebang above causes npm to generate a correct Windows .cmd shim
|
|
4
|
+
// that prepends `node`, rather than trying to run the .js file directly.
|
|
5
|
+
import('../dist/index.js').catch(err => {
|
|
6
|
+
process.stderr.write('[ng-annotate-mcp] Fatal: ' + String(err) + '\n');
|
|
7
|
+
process.exit(1);
|
|
8
|
+
});
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ng-annotate/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
|
-
"ng-annotate-mcp": "
|
|
6
|
+
"ng-annotate-mcp": "bin/ng-annotate-mcp.js"
|
|
7
7
|
},
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "https://github.com/yngvebn/ngagentify"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
|
-
"dist"
|
|
13
|
+
"dist",
|
|
14
|
+
"bin"
|
|
14
15
|
],
|
|
15
16
|
"main": "dist/index.js",
|
|
16
17
|
"types": "dist/index.d.ts",
|