@nataliapc/mcp-openmsx 1.2.8 → 1.2.9

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +9 -5
package/README.md CHANGED
@@ -14,7 +14,7 @@ A [Model Context Protocol](https://modelcontextprotocol.io/introduction) (MCP) s
14
14
  This server provides comprehensive tools for MSX software development, testing, and automation through standardized MCP protocols.
15
15
 
16
16
 
17
- > 🎁🎁 _If you find this project useful, please consider making a donation: [PAYPAL Link](https://www.paypal.com/donate/?hosted_button_id=9X268YDDS9SYC)_
17
+ > 🎁🎁 _If you find this project useful, please consider making a donation by [PAYPAL Link](https://www.paypal.com/donate/?hosted_button_id=9X268YDDS9SYC) or [GitHub Sponsors](https://github.com/sponsors/nataliapc)_
18
18
 
19
19
  ---
20
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nataliapc/mcp-openmsx",
3
- "version": "1.2.8",
3
+ "version": "1.2.9",
4
4
  "description": "Model context protocol server for openMSX automation and control",
5
5
  "main": "dist/server.js",
6
6
  "type": "module",
@@ -35,11 +35,12 @@
35
35
  "start": "node dist/server.js",
36
36
  "dev": "tsx src/server.ts",
37
37
  "prepublishOnly": "npm run build",
38
- "test": "echo \"Error: no test specified\" && exit 1"
38
+ "test": "vitest run",
39
+ "test:watch": "vitest",
40
+ "test:coverage": "vitest run --coverage"
39
41
  },
40
42
  "optionalDependencies": {
41
- "node-expose-sspi": "^0.1.60",
42
- "sharp": ">=0.32.0"
43
+ "node-expose-sspi": "^0.1.60"
43
44
  },
44
45
  "pnpm": {
45
46
  "overrides": {
@@ -56,6 +57,7 @@
56
57
  "express": "^5.2.1",
57
58
  "mime-types": "^3.0.2",
58
59
  "sanitize-html": "^2.17.0",
60
+ "sharp": "^0.34.5",
59
61
  "tsx": "^4.21.0",
60
62
  "vectra": "^0.11.1",
61
63
  "zod": "^3.25.76"
@@ -64,8 +66,10 @@
64
66
  "@modelcontextprotocol/inspector": "^0.20.0",
65
67
  "@types/node": "^25.2.3",
66
68
  "@types/sanitize-html": "^2.16.0",
69
+ "@vitest/coverage-v8": "^4.1.4",
67
70
  "shx": "^0.4.0",
68
- "typescript": "^5.9.3"
71
+ "typescript": "^5.9.3",
72
+ "vitest": "^4.1.4"
69
73
  },
70
74
  "files": [
71
75
  "dist/**/*",