claude-threads 1.4.6 → 1.4.8
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 +24 -0
- package/bin/claude-threads-daemon +25 -1
- package/dist/index.js +19604 -19538
- package/dist/mcp/permission-server.js +18231 -1970
- package/package.json +14 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-threads",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.8",
|
|
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",
|
|
@@ -77,8 +79,9 @@
|
|
|
77
79
|
"react": "^19.2.3",
|
|
78
80
|
"semver": "^7.7.3",
|
|
79
81
|
"update-notifier": "^7.3.1",
|
|
82
|
+
"ws": "^8.18.0",
|
|
80
83
|
"yauzl": "^3.2.0",
|
|
81
|
-
"zod": "^3.
|
|
84
|
+
"zod": "^4.3.6"
|
|
82
85
|
},
|
|
83
86
|
"devDependencies": {
|
|
84
87
|
"@eslint/js": "^9.39.2",
|
|
@@ -89,6 +92,7 @@
|
|
|
89
92
|
"@types/react": "^19.2.7",
|
|
90
93
|
"@types/semver": "^7.7.1",
|
|
91
94
|
"@types/update-notifier": "^6.0.8",
|
|
95
|
+
"@types/ws": "^8.18.0",
|
|
92
96
|
"@types/yauzl": "^2.10.3",
|
|
93
97
|
"@types/yazl": "^3.3.0",
|
|
94
98
|
"eslint": "^9.39.2",
|
|
@@ -110,9 +114,13 @@
|
|
|
110
114
|
"website/**/*.{html,css,js}": "prettier --write"
|
|
111
115
|
},
|
|
112
116
|
"overrides": {
|
|
113
|
-
"hono": "$hono"
|
|
117
|
+
"hono": "$hono",
|
|
118
|
+
"@hono/node-server": "$@hono/node-server",
|
|
119
|
+
"express-rate-limit": "$express-rate-limit"
|
|
114
120
|
},
|
|
115
121
|
"resolutions": {
|
|
116
|
-
"hono": "$hono"
|
|
122
|
+
"hono": "$hono",
|
|
123
|
+
"@hono/node-server": "$@hono/node-server",
|
|
124
|
+
"express-rate-limit": "$express-rate-limit"
|
|
117
125
|
}
|
|
118
126
|
}
|