@gesslar/mediawiki-mcp 1.0.0 → 1.0.1

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.
@@ -16,6 +16,5 @@ jobs:
16
16
  uses: gesslar/Maint/.github/workflows/Quality.yaml@main
17
17
  secrets: inherit
18
18
  with:
19
- package_manager: "auto"
20
19
  perform_linting: "${{ vars.PERFORM_LINTING || 'yes' }}"
21
20
  perform_testing: "${{ vars.PERFORM_TESTING || 'no' }}"
@@ -2,16 +2,13 @@ name: Release
2
2
 
3
3
  on:
4
4
  pull_request:
5
- types: [closed]
6
- branches: [main]
5
+ types: [ closed ]
6
+ branches: [ main ]
7
7
 
8
8
  jobs:
9
9
  Release:
10
- if: github.event.pull_request.merged == true
10
+ if: ${{ github.event.pull_request.merged == true }}
11
11
  uses: gesslar/Maint/.github/workflows/Release.yaml@main
12
12
  secrets: inherit
13
- with:
14
- package_manager: "auto"
15
- quality_check: "Quality"
16
13
  permissions:
17
14
  contents: write
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gesslar/mediawiki-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP server for Integrating with MediaWiki",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -15,7 +15,7 @@
15
15
  "lint": "eslint src/",
16
16
  "lint:fix": "eslint src/ --fix",
17
17
  "submit": "npm publish --access public --//registry.npmjs.org/:_authToken=\"${NPM_ACCESS_TOKEN}\"",
18
- "update": "npx npm-check-updates -u && npm install",
18
+ "update": "npx -y npm-check-updates -u && npm install",
19
19
  "pr": "gt submit --ai -p",
20
20
  "patch": "npm version patch",
21
21
  "minor": "npm version minor",
@@ -41,10 +41,10 @@
41
41
  "dependencies": {
42
42
  "@gesslar/wikid": "^2.3.1",
43
43
  "@modelcontextprotocol/sdk": "^1.29.0",
44
- "zod": "^4.3.6"
44
+ "zod": "^4.4.3"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@gesslar/uglier": "^2.4.1",
48
- "eslint": "^10.2.0"
48
+ "eslint": "^10.6.0"
49
49
  }
50
50
  }