claude-threads 1.18.2 → 1.18.4
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 +19 -0
- package/dist/index.js +3853 -3428
- package/dist/mcp/mcp-server.js +3020 -2462
- package/package.json +12 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-threads",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.4",
|
|
4
4
|
"description": "Run Claude Code from Slack or Mattermost. Sessions stream live into threads where your whole team can watch and steer.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"lint": "eslint src/",
|
|
30
30
|
"lint:fix": "eslint src/ --fix",
|
|
31
31
|
"typecheck": "tsc --noEmit",
|
|
32
|
-
"knip": "
|
|
32
|
+
"knip": "knip --no-config-hints",
|
|
33
33
|
"prepare": "husky"
|
|
34
34
|
},
|
|
35
35
|
"keywords": [
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"package.json"
|
|
68
68
|
],
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@hono/node-server": "2.0.
|
|
70
|
+
"@hono/node-server": "2.0.11",
|
|
71
71
|
"@inkjs/ui": "^2.0.0",
|
|
72
72
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
73
73
|
"@redactpii/node": "^1.0.16",
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
"commander": "^14.0.2",
|
|
76
76
|
"diff": "^8.0.3",
|
|
77
77
|
"express-rate-limit": "^8.3.0",
|
|
78
|
-
"hono": "4.12.
|
|
78
|
+
"hono": "4.12.31",
|
|
79
79
|
"ink": "^6.6.0",
|
|
80
80
|
"ink-scroll-view": "^0.3.5",
|
|
81
|
-
"js-yaml": "^4.
|
|
81
|
+
"js-yaml": "^4.3.0",
|
|
82
82
|
"prompts": "^2.4.2",
|
|
83
83
|
"react": "^19.2.3",
|
|
84
84
|
"semver": "7.8.5",
|
|
@@ -98,6 +98,7 @@
|
|
|
98
98
|
"@types/ws": "^8.18.0",
|
|
99
99
|
"eslint": "^10.7.0",
|
|
100
100
|
"husky": "^9.1.7",
|
|
101
|
+
"knip": "6.29.0",
|
|
101
102
|
"lint-staged": "^17.0.4",
|
|
102
103
|
"prettier": "^3.9.5",
|
|
103
104
|
"typescript": "^6.0.2",
|
|
@@ -120,9 +121,10 @@
|
|
|
120
121
|
"flatted": ">=3.4.0",
|
|
121
122
|
"picomatch": ">=2.3.2",
|
|
122
123
|
"path-to-regexp": ">=8.4.0",
|
|
123
|
-
"fast-uri": ">=3.1.
|
|
124
|
+
"fast-uri": ">=3.1.4",
|
|
125
|
+
"brace-expansion": ">=5.0.7",
|
|
124
126
|
"ws": "$ws",
|
|
125
|
-
"shell-quote": ">=1.
|
|
127
|
+
"shell-quote": ">=1.10.0"
|
|
126
128
|
},
|
|
127
129
|
"resolutions": {
|
|
128
130
|
"hono": "$hono",
|
|
@@ -131,8 +133,9 @@
|
|
|
131
133
|
"flatted": ">=3.4.0",
|
|
132
134
|
"picomatch": ">=2.3.2",
|
|
133
135
|
"path-to-regexp": ">=8.4.0",
|
|
134
|
-
"fast-uri": ">=3.1.
|
|
136
|
+
"fast-uri": ">=3.1.4",
|
|
137
|
+
"brace-expansion": ">=5.0.7",
|
|
135
138
|
"ws": "$ws",
|
|
136
|
-
"shell-quote": ">=1.
|
|
139
|
+
"shell-quote": ">=1.10.0"
|
|
137
140
|
}
|
|
138
141
|
}
|