diffdoc 0.6.4 → 0.6.5

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 (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +2 -3
package/dist/index.js CHANGED
@@ -44,7 +44,7 @@ function addCloudEndpointAndKeyOptions(command) {
44
44
  program
45
45
  .name("diffdoc")
46
46
  .description("Translate repository code shifts into plain-English business context")
47
- .version("0.6.4");
47
+ .version("0.6.5");
48
48
  program
49
49
  .command("init")
50
50
  .description("Initialize DiffDoc configuration for this repository")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "diffdoc",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "Translate repository code shifts into plain-English business context",
5
5
  "license": "MIT",
6
6
  "author": "Christopher Sullivan",
@@ -32,8 +32,7 @@
32
32
  "build": "tsc && node dist/scripts/generate-schemas.js",
33
33
  "generate:schemas": "node dist/scripts/generate-schemas.js",
34
34
  "clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
35
- "start": "tsc && node ./dist/index.js",
36
- "prepare": "npm run build"
35
+ "start": "tsc && node ./dist/index.js"
37
36
  },
38
37
  "dependencies": {
39
38
  "@modelcontextprotocol/sdk": "^1.29.0",