mindee 4.0.0 → 4.0.1

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/CHANGELOG.md +5 -0
  2. package/package.json +3 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v4.0.1 - 2023-08-22
4
+ ### Fixes
5
+ * :bug: fixed pre-commit dependency script blocking installs
6
+
7
+
3
8
  ## v4.0.0 - 2023-08-14
4
9
  ### ¡Breaking Changes!
5
10
  * :art: :boom: harmonize response types with other libraries
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mindee",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Mindee Client Library for Node.js",
5
5
  "main": "src/index.js",
6
6
  "bin": "bin/mindee.js",
@@ -11,9 +11,9 @@
11
11
  "clean": "rm -rf ./dist ./docs/_build",
12
12
  "test": "mocha 'tests/**/*.spec.ts'",
13
13
  "lint": "eslint './src/**/*.ts' --report-unused-disable-directives && echo 'Your .ts files look good.'",
14
+ "lint-fix": "eslint './src/**/*.ts' --fix",
14
15
  "docs": "typedoc --out docs/_build ./src/index.ts",
15
- "docs-for-dist": "typedoc --out docs/_build ./src/index.ts && cp -r ./docs/code_samples ./docs/_build/",
16
- "postinstall": "husky install"
16
+ "docs-for-dist": "typedoc --out docs/_build ./src/index.ts && cp -r ./docs/code_samples ./docs/_build/"
17
17
  },
18
18
  "files": [
19
19
  "src/*",
@@ -47,7 +47,6 @@
47
47
  "@typescript-eslint/parser": "^5.57.1",
48
48
  "chai": "^4.3.7",
49
49
  "eslint": "^8.32.0",
50
- "husky": "^8.0.3",
51
50
  "lint-staged": "^13.2.3",
52
51
  "mocha": "^10.1.0",
53
52
  "ts-node": "^10.9.1",