kodevu 0.1.68 → 0.1.69

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 (1) hide show
  1. package/package.json +7 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kodevu",
3
- "version": "0.1.68",
3
+ "version": "0.1.69",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "Poll SVN revisions or Git commits, send each change diff to a reviewer CLI, and write configurable review reports.",
@@ -14,7 +14,9 @@
14
14
  ],
15
15
  "scripts": {
16
16
  "start": "node src/index.js",
17
- "check": "node --check src/index.js && node --check src/config.js && node --check src/review-runner.js && node --check src/svn-client.js && node --check src/git-client.js && node --check src/vcs-client.js && node --check src/shell.js && node --check src/progress-ui.js"
17
+ "check": "node --check src/index.js && node --check src/config.js && node --check src/review-runner.js && node --check src/svn-client.js && node --check src/git-client.js && node --check src/vcs-client.js && node --check src/shell.js && node --check src/progress-ui.js",
18
+ "lint": "eslint . --ext .js",
19
+ "lint:fix": "eslint . --ext .js --fix"
18
20
  },
19
21
  "engines": {
20
22
  "node": ">=20"
@@ -23,5 +25,8 @@
23
25
  "cross-spawn": "^7.0.6",
24
26
  "fast-xml-parser": "^5.2.5",
25
27
  "iconv-lite": "^0.6.3"
28
+ },
29
+ "devDependencies": {
30
+ "eslint": "^10.1.0"
26
31
  }
27
32
  }