chromiumly 2.0.4 → 2.0.6

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/README.md CHANGED
@@ -51,7 +51,7 @@ GOTENBERG_ENDPOINT=http://localhost:3000
51
51
  ```json
52
52
  {
53
53
  "gotenberg": {
54
- "enpdoint": "http://localhost:3000"
54
+ "endpoint": "http://localhost:3000"
55
55
  }
56
56
  }
57
57
  ```
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  import { PathLike } from "fs";
3
4
  import { PdfFormat } from "../../common";
4
5
  import { IConverter } from "../interfaces/converter.interface";
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  import { PathLike } from "fs";
3
4
  import { PdfFormat } from "../../common";
4
5
  import { IConverter } from "../interfaces/converter.interface";
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  import { PathLike } from "fs";
3
4
  import { PdfFormat } from "../../common";
4
5
  import { PageProperties } from "./converter.types";
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  import { PathLike } from "fs";
3
4
  import { PdfFormat } from "../common";
4
5
  import { PageProperties } from "../libre-office";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chromiumly",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
4
4
  "description": "A lightweight Typescript library that interacts with Gotenberg's different modules to convert a variety of document formats to PDF files.",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",
@@ -15,7 +15,7 @@
15
15
  "author": "Taha Cherfia <taha.cherfia@gmail.com>",
16
16
  "license": "MIT",
17
17
  "engines": {
18
- "node": "14.x"
18
+ "node": ">=14.x"
19
19
  },
20
20
  "keywords": [
21
21
  "gotenberg",
@@ -32,25 +32,25 @@
32
32
  "test": "jest --runInBand --ci --coverage --reporters=default --reporters=jest-junit"
33
33
  },
34
34
  "devDependencies": {
35
- "@babel/preset-typescript": "^7.16.7",
36
- "@types/config": "^0.0.41",
37
- "@types/dotenv": "^8.2.0",
38
- "@types/form-data": "^2.5.0",
39
- "@types/jest": "^27.4.1",
40
- "@types/node": "^17.0.22",
41
- "@types/node-fetch": "2",
42
- "@typescript-eslint/eslint-plugin": "^5.16.0",
43
- "@typescript-eslint/parser": "^5.16.0",
44
- "eslint": "^8.11.0",
45
- "jest": "^27.5.1",
46
- "jest-junit": "^13.0.0",
47
- "ts-jest": "^27.1.4",
48
- "ts-node": "^10.7.0",
49
- "typescript": "4.6.3"
35
+ "@babel/preset-typescript": "7.18.6",
36
+ "@types/config": "3.3.0",
37
+ "@types/dotenv": "8.2.0",
38
+ "@types/form-data": "2.5.0",
39
+ "@types/jest": "29.0.3",
40
+ "@types/node": "17.0.22",
41
+ "@types/node-fetch": "2.6.2",
42
+ "@typescript-eslint/eslint-plugin": "5.38.0",
43
+ "@typescript-eslint/parser": "5.38.0",
44
+ "eslint": "8.23.1",
45
+ "jest": "29.0.3",
46
+ "jest-junit": "14.0.1",
47
+ "ts-jest": "29.0.1",
48
+ "ts-node": "10.9.1",
49
+ "typescript": "4.8.3"
50
50
  },
51
51
  "dependencies": {
52
52
  "config": "^3.3.7",
53
- "dotenv": "^16.0.0",
53
+ "dotenv": "^16.0.2",
54
54
  "form-data": "^4.0.0",
55
55
  "node-fetch": "2"
56
56
  }