Skip to content

Commit 9531d5f

Browse files
committed
readme updated
1 parent 8ca1e7e commit 9531d5f

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- Enhanced documentation for public use
1313
- Publication scripts and workflows
1414

15+
### Changed
16+
- Updated package.json for npm publication
17+
- Added proper author information
18+
- Fixed repository, homepage, and bugs URLs
19+
- Added files field to control package contents
20+
- Set specific version for @modelcontextprotocol/sdk dependency
21+
- Added publishConfig for public access
22+
- Added funding information
23+
1524
## [0.1.0] - 2025-05-21
1625

1726
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ npm install mcp-github-project-manager
109109

110110
```bash
111111
# Clone the repository
112-
git clone https://github.com/yourusername/mcp-github-project-manager.git
112+
git clone https://github.com/kunwarVivek/mcp-github-project-manager.git
113113
cd mcp-github-project-manager
114114

115115
# Install dependencies

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,21 @@
2020
"model-context-protocol",
2121
"project-management"
2222
],
23-
"author": "",
23+
"author": "kvs <kunwarviveksingh@gmail.com> (https://github.com/kunwarVivek)",
2424
"license": "MIT",
2525
"repository": {
2626
"type": "git",
27-
"url": "https://github.com/yourusername/mcp-github-project-manager.git"
27+
"url": "https://github.com/kunwarVivek/mcp-github-project-manager.git"
2828
},
29+
"homepage": "https://github.com/kunwarVivek/mcp-github-project-manager#readme",
30+
"bugs": {
31+
"url": "https://github.com/kunwarVivek/mcp-github-project-manager/issues"
32+
},
33+
"files": [
34+
"build/**/*",
35+
"LICENSE",
36+
"README.md"
37+
],
2938
"scripts": {
3039
"clean": "rimraf build",
3140
"prebuild": "npm run clean",
@@ -47,14 +56,21 @@
4756
"release": "node --loader ts-node/esm scripts/publish.js"
4857
},
4958
"dependencies": {
50-
"@modelcontextprotocol/sdk": "*",
59+
"@modelcontextprotocol/sdk": "^1.6.1",
5160
"@octokit/rest": "^21.1.1",
5261
"commander": "^14.0.0",
5362
"dotenv": "^16.5.0",
5463
"tsyringe": "^4.10.0",
5564
"uuid": "^11.1.0",
5665
"zod": "^3.25.23"
5766
},
67+
"publishConfig": {
68+
"access": "public"
69+
},
70+
"funding": {
71+
"type": "github",
72+
"url": "https://github.com/sponsors/kunwarVivek"
73+
},
5874
"devDependencies": {
5975
"@jest/globals": "^29.7.0",
6076
"@octokit/openapi-types": "^25.0.0",

0 commit comments

Comments
 (0)