UNPKG

chromiumly

Version:

A lightweight Typescript library that interacts with Gotenberg's different modules to convert a variety of document formats to PDF files.

81 lines (80 loc) 2.08 kB
{ "name": "chromiumly", "version": "4.1.3", "description": "A lightweight Typescript library that interacts with Gotenberg's different modules to convert a variety of document formats to PDF files.", "main": "dist/main.js", "types": "dist/main.d.ts", "files": [ "dist" ], "repository": { "type": "git", "url": "https://github.com/cherfia/chromiumly.git" }, "author": "Taha Cherfia <taha.cherfia@gmail.com>", "license": "MIT", "engines": { "node": ">=18.x" }, "keywords": [ "gotenberg", "chromium", "LibreOffice", "screenshots", "html", "markdown", "pdf", "docx", "pptx", "xlsx" ], "scripts": { "clean": "rm -rf dist build", "lint": "eslint src/ --ext .js,.ts", "build": "yarn clean && tsc -p tsconfig.json", "test": "jest --runInBand --ci --coverage --reporters=default --reporters=jest-junit", "commit": "git-cz", "format": "yarn prettier . -w", "release": "release-it", "prepare": "husky" }, "config": { "commitizen": { "path": "@commitlint/cz-commitlint" } }, "devDependencies": { "@babel/preset-typescript": "7.27.1", "@commitlint/cli": "^19.0.3", "@commitlint/config-conventional": "^19.0.3", "@commitlint/cz-commitlint": "^19.0.3", "@release-it/conventional-changelog": "10.0.1", "@types/config": "3.3.5", "@types/dotenv": "8.2.3", "@types/jest": "30.0.0", "@types/node": "22.17.0", "@typescript-eslint/eslint-plugin": "8.38.0", "@typescript-eslint/parser": "8.38.0", "commitizen": "4.3.1", "eslint": "8.57.0", "eslint-config-prettier": "^10.0.0", "husky": "^9.0.11", "inquirer": "8", "jest": "30.0.5", "jest-junit": "16.0.0", "lint-staged": "^16.0.0", "prettier": "3.6.2", "release-it": "19.0.4", "ts-jest": "29.4.0", "ts-node": "10.9.2", "tslib": "2.8.1", "typescript": "5.9.2" }, "optionalDependencies": { "config": "4.x", "dotenv": "17.x" }, "lint-staged": { "**/*": "prettier --write --ignore-unknown" } }