claude-threads 1.4.5 → 1.4.7
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/CHANGELOG.md +26 -0
- package/dist/index.js +847 -830
- package/dist/mcp/permission-server.js +14409 -1008
- package/package.json +12 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-threads",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.7",
|
|
4
4
|
"description": "Share Claude Code sessions live in a Mattermost channel with interactive features",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -63,13 +63,15 @@
|
|
|
63
63
|
"package.json"
|
|
64
64
|
],
|
|
65
65
|
"dependencies": {
|
|
66
|
+
"@hono/node-server": "^1.19.11",
|
|
66
67
|
"@inkjs/ui": "^2.0.0",
|
|
67
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
68
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
68
69
|
"@redactpii/node": "^1.0.16",
|
|
69
70
|
"cli-spinners": "^3.3.0",
|
|
70
71
|
"commander": "^14.0.2",
|
|
71
72
|
"diff": "^8.0.3",
|
|
72
|
-
"
|
|
73
|
+
"express-rate-limit": "^8.3.0",
|
|
74
|
+
"hono": "^4.12.5",
|
|
73
75
|
"ink": "^6.6.0",
|
|
74
76
|
"ink-scroll-view": "^0.3.5",
|
|
75
77
|
"js-yaml": "^4.1.1",
|
|
@@ -78,7 +80,7 @@
|
|
|
78
80
|
"semver": "^7.7.3",
|
|
79
81
|
"update-notifier": "^7.3.1",
|
|
80
82
|
"yauzl": "^3.2.0",
|
|
81
|
-
"zod": "^3.
|
|
83
|
+
"zod": "^4.3.6"
|
|
82
84
|
},
|
|
83
85
|
"devDependencies": {
|
|
84
86
|
"@eslint/js": "^9.39.2",
|
|
@@ -110,9 +112,13 @@
|
|
|
110
112
|
"website/**/*.{html,css,js}": "prettier --write"
|
|
111
113
|
},
|
|
112
114
|
"overrides": {
|
|
113
|
-
"hono": "$hono"
|
|
115
|
+
"hono": "$hono",
|
|
116
|
+
"@hono/node-server": "$@hono/node-server",
|
|
117
|
+
"express-rate-limit": "$express-rate-limit"
|
|
114
118
|
},
|
|
115
119
|
"resolutions": {
|
|
116
|
-
"hono": "
|
|
120
|
+
"hono": "$hono",
|
|
121
|
+
"@hono/node-server": "$@hono/node-server",
|
|
122
|
+
"express-rate-limit": "$express-rate-limit"
|
|
117
123
|
}
|
|
118
124
|
}
|