overleaf-review 0.3.0 → 0.4.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.
Files changed (3) hide show
  1. package/README.md +94 -15
  2. package/dist/cli.js +3204 -371
  3. package/package.json +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "overleaf-review",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "The missing review layer for Overleaf's Git bridge — sync comments and tracked changes between Overleaf and your local repo.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -40,7 +40,9 @@
40
40
  "probe:read": "tsx src/probes/01-read-ranges.ts",
41
41
  "probe:comment": "tsx src/probes/02-write-comment.ts",
42
42
  "probe:track": "tsx src/probes/03-write-track-change.ts",
43
- "typecheck": "tsc --noEmit"
43
+ "typecheck": "tsc --noEmit",
44
+ "test": "tsx --test test/*.test.ts",
45
+ "check": "npm run typecheck && npm test && npm run build"
44
46
  },
45
47
  "dependencies": {
46
48
  "diff": "^9.0.0",