Skip to content

Commit 22f74e3

Browse files
committed
fix(package): remove relative prefix from bin paths in package.json
Updates the `bin` paths in `package.json` to remove the leading `./` prefix.
1 parent 703a98a commit 22f74e3

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@
44
"description": "MCP server for fetching and searching documentation",
55
"type": "module",
66
"bin": {
7-
"docs-server": "./dist/server.js",
8-
"docs-cli": "./dist/cli.js"
7+
"docs-server": "dist/server.js",
8+
"docs-cli": "dist/cli.js"
9+
},
10+
"license": "MIT",
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/arabold/docs-mcp-server.git"
914
},
1015
"files": [
1116
"dist",

0 commit comments

Comments
 (0)