Commit 91a1e98
authored
fix: correct bin format in package.json (#26)
## Summary
Fixes npm publish warnings by using proper object format for `bin` field.
## Problem
npm was auto-correcting the bin format during publish:
```
npm warn publish "bin" was converted to an object
npm warn publish "bin[efficient-gitlab-mcp-server]" script name was cleaned
```
## Solution
Changed from shorthand:
```json
"bin": "./dist/index.js"
```
To explicit object format:
```json
"bin": {
"efficient-gitlab-mcp-server": "./dist/index.js"
}
```1 parent e6f1916 commit 91a1e98
1 file changed
+3
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
10 | 12 | | |
11 | 13 | | |
12 | 14 | | |
| |||
0 commit comments