claude-threads 1.8.2 → 1.9.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-threads",
3
- "version": "1.8.2",
3
+ "version": "1.9.0",
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",
@@ -17,15 +17,15 @@
17
17
  "test:watch": "bun test src/ --watch",
18
18
  "test:coverage": "bun test src/ --coverage",
19
19
  "test:integration:setup": "docker compose -f tests/integration/docker/docker-compose.yml up -d && bun run tests/integration/setup/wait-for-mattermost.ts && bun run tests/integration/setup/setup-mattermost.ts",
20
- "test:integration:run": "INTEGRATION_TEST=1 bun test tests/integration/suites --timeout 60000",
20
+ "test:integration:run": "INTEGRATION_TEST=1 bun test tests/integration/suites --timeout 120000",
21
21
  "test:integration": "bun run test:integration:setup && bun run test:integration:run",
22
22
  "test:integration:teardown": "docker compose -f tests/integration/docker/docker-compose.yml down -v",
23
23
  "test:integration:clean": "bun run tests/integration/setup/teardown.ts",
24
24
  "test:integration:slack:setup": "bun run tests/integration/fixtures/slack/mock-server.ts &",
25
- "test:integration:slack:run": "TEST_PLATFORMS=slack INTEGRATION_TEST=1 bun test tests/integration/suites --timeout 60000",
25
+ "test:integration:slack:run": "TEST_PLATFORMS=slack INTEGRATION_TEST=1 bun test tests/integration/suites --timeout 120000",
26
26
  "test:integration:slack:teardown": "pkill -f 'mock-server.ts' || true",
27
- "test:integration:slack": "bun run test:integration:slack:teardown; bun run tests/integration/fixtures/slack/mock-server.ts & sleep 2 && TEST_PLATFORMS=slack INTEGRATION_TEST=1 bun test tests/integration/suites --timeout 60000; bun run test:integration:slack:teardown",
28
- "test:integration:all": "bun run test:integration:setup && bun run tests/integration/fixtures/slack/mock-server.ts & sleep 2 && TEST_PLATFORMS=mattermost,slack INTEGRATION_TEST=1 bun test tests/integration/suites --timeout 60000; bun run test:integration:slack:teardown",
27
+ "test:integration:slack": "bun run test:integration:slack:teardown; bun run tests/integration/fixtures/slack/mock-server.ts & sleep 2 && TEST_PLATFORMS=slack INTEGRATION_TEST=1 bun test tests/integration/suites --timeout 120000; bun run test:integration:slack:teardown",
28
+ "test:integration:all": "bun run test:integration:setup && bun run tests/integration/fixtures/slack/mock-server.ts & sleep 2 && TEST_PLATFORMS=mattermost,slack INTEGRATION_TEST=1 bun test tests/integration/suites --timeout 120000; bun run test:integration:slack:teardown",
29
29
  "lint": "eslint src/",
30
30
  "lint:fix": "eslint src/ --fix",
31
31
  "typecheck": "tsc --noEmit",