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.
- package/README.md +1 -1
- package/package.json +9 -7
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcpal",
|
|
3
|
-
"version": "1.
|
|
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/
|
|
40
|
+
"url": "git+https://github.com/mjkid221/MCPal.git"
|
|
41
41
|
},
|
|
42
|
-
"homepage": "https://github.com/mjkid221/
|
|
42
|
+
"homepage": "https://github.com/mjkid221/MCPal#readme",
|
|
43
43
|
"bugs": {
|
|
44
|
-
"url": "https://github.com/mjkid221/
|
|
44
|
+
"url": "https://github.com/mjkid221/MCPal/issues"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
|
-
"node": ">=
|
|
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
|
}
|