mcpal 1.1.0 → 1.2.16

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 -7
package/README.md CHANGED
@@ -109,7 +109,7 @@ After the first notification, macOS may prompt you to allow notifications from "
109
109
  # Install dependencies
110
110
  pnpm install
111
111
 
112
- # Build
112
+ # Build (required after clone - sets up macOS notification app)
113
113
  pnpm run build
114
114
 
115
115
  # Type check
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcpal",
3
- "version": "1.1.0",
3
+ "version": "1.2.16",
4
4
  "description": "MCP server that sends native notifications with LLM-aware icons",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -11,9 +11,9 @@
11
11
  "src/assets/"
12
12
  ],
13
13
  "scripts": {
14
- "postinstall": "node dist/scripts/setup-notifier.js",
14
+ "postinstall": "node -e \"try{require('./dist/scripts/setup-notifier.js')}catch(e){console.log('Skipping setup (run pnpm build first)')}\"",
15
15
  "test:notification": "node dist/scripts/test-notification.js",
16
- "build": "tsc && cp -r src/assets dist/",
16
+ "build": "tsc && cp -r src/assets dist/ && node dist/scripts/setup-notifier.js",
17
17
  "test": "echo \"Error: no test specified\" && exit 1",
18
18
  "lint": "eslint . --ext .ts",
19
19
  "lint:fix": "eslint . --ext .ts --fix",
@@ -37,15 +37,16 @@
37
37
  "license": "MIT",
38
38
  "repository": {
39
39
  "type": "git",
40
- "url": "git+https://github.com/mjkid221/mcPal.git"
40
+ "url": "git+https://github.com/mjkid221/MCPal.git"
41
41
  },
42
- "homepage": "https://github.com/mjkid221/mcPal#readme",
42
+ "homepage": "https://github.com/mjkid221/MCPal#readme",
43
43
  "bugs": {
44
- "url": "https://github.com/mjkid221/mcPal/issues"
44
+ "url": "https://github.com/mjkid221/MCPal/issues"
45
45
  },
46
46
  "engines": {
47
- "node": ">=18.0.0"
47
+ "node": ">=24.0.0"
48
48
  },
49
+ "packageManager": "pnpm@10.0.0",
49
50
  "dependencies": {
50
51
  "@modelcontextprotocol/sdk": "^1.25.3",
51
52
  "node-notifier": "^10.0.1",
@@ -62,6 +63,7 @@
62
63
  "eslint-plugin-prettier": "^5.2.1",
63
64
  "husky": "^9.1.7",
64
65
  "lint-staged": "^15.3.0",
66
+ "prettier": "^3.8.1",
65
67
  "tsx": "^4.19.2",
66
68
  "typescript": "^5.7.3"
67
69
  }