@lucasschirm/claude-session-sync 0.2.1 → 0.2.2

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,13 +1,13 @@
1
1
  {
2
2
  "name": "@lucasschirm/claude-session-sync",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "ISC",
7
7
  "description": "Claude Code plugin adapter for the @lucasschirm/sal-sync session data sync engine.",
8
8
  "bin": {
9
- "claude-sync": "./bin/claude-sync",
10
- "claude-session-sync": "./bin/claude-sync"
9
+ "claude-sync": "bin/claude-sync",
10
+ "claude-session-sync": "bin/claude-sync"
11
11
  },
12
12
  "files": [
13
13
  ".claude-plugin",
@@ -22,7 +22,8 @@
22
22
  "test:coverage": "vitest run --coverage --coverage.include='src/**/*.ts' --coverage.include='build.mjs' --coverage.exclude='src/hook.ts' --coverage.exclude='src/session-start.ts' --coverage.exclude='src/session-end.ts' --coverage.exclude='src/transcript-watcher.ts' --coverage.thresholds.statements=60 --coverage.thresholds.branches=60 --coverage.thresholds.functions=60 --coverage.thresholds.lines=60",
23
23
  "typecheck": "tsc --noEmit -p tsconfig.json",
24
24
  "lint": "biome check src tests build.mjs",
25
- "verify": "pnpm run typecheck && pnpm run lint && pnpm run test"
25
+ "verify": "pnpm run typecheck && pnpm run lint && pnpm run test",
26
+ "sync": "node ./bin/claude-sync"
26
27
  },
27
28
  "dependencies": {
28
29
  "@lucasschirm/sal-sync": "workspace:*"