chromiumly 2.0.2 → 2.0.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.
package/README.md CHANGED
@@ -1,6 +1,14 @@
1
1
  # Chromiumly
2
2
 
3
- A lightweight Typescrpit library which interacts with [Gotenberg](https://gotenberg.dev/)'s different modules to convert a variety of document formats to PDF files.
3
+ ![build](https://github.com/cherfia/chromiumly/actions/workflows/build.yml/badge.svg)
4
+ [![coverage](https://img.shields.io/codecov/c/gh/cherfia/chromiumly?style=flat-square)](https://codecov.io/gh/cherfia/chromiumly)
5
+ [![vulnerabilities](https://snyk.io/test/github/cherfia/chromiumly/badge.svg?targetFile=package.json&color=brightgreen&style=flat-square)](https://snyk.io/test/github/cherfia/chromiumly?targetFile=package.json)
6
+ [![maintainability](https://img.shields.io/codeclimate/maintainability/cherfia/chromiumly?color=yellow&style=flat-square)](https://codeclimate.com/github/cherfia/chromiumly/maintainability)
7
+ [![npm](https://img.shields.io/npm/v/chromiumly?color=brightgreen&style=flat-square)](https://npmjs.org/package/chromiumly)
8
+ [![downloads](https://img.shields.io/npm/dt/chromiumly.svg?color=brightgreen&style=flat-square)](https://npm-stat.com/charts.html?package=chromiumly)
9
+ ![licence](https://img.shields.io/github/license/cherfia/chromiumly?style=flat-square)
10
+
11
+ A lightweight Typescript library that interacts with [Gotenberg](https://gotenberg.dev/)'s different modules to convert a variety of document formats to PDF files.
4
12
 
5
13
  ## Install
6
14
 
@@ -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,7 +1,7 @@
1
1
  {
2
2
  "name": "chromiumly",
3
- "version": "2.0.2",
4
- "description": "A lightweight Typescrpit library which interacts with Gotenberg's different modules to convert a variety of document formats to PDF files.",
3
+ "version": "2.0.5",
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",
7
7
  "files": [
@@ -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.2"
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.1",
40
+ "@types/node": "17.0.22",
41
+ "@types/node-fetch": "2.6.2",
42
+ "@typescript-eslint/eslint-plugin": "5.36.2",
43
+ "@typescript-eslint/parser": "5.36.2",
44
+ "eslint": "8.23.0",
45
+ "jest": "29.0.3",
46
+ "jest-junit": "14.0.1",
47
+ "ts-jest": "29.0.0",
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.1",
54
54
  "form-data": "^4.0.0",
55
55
  "node-fetch": "2"
56
56
  }