UNPKG

chromiumly

Version:

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

84 lines (83 loc) 2.17 kB
{ "name": "chromiumly", "version": "4.2.0", "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.28.5", "@commitlint/cli": "^20.0.0", "@commitlint/config-conventional": "^20.0.0", "@commitlint/cz-commitlint": "^20.0.0", "@release-it/conventional-changelog": "10.0.2", "@types/config": "3.3.5", "@types/dotenv": "8.2.3", "@types/jest": "30.0.0", "@types/node": "24.10.1", "@typescript-eslint/eslint-plugin": "8.47.0", "@typescript-eslint/parser": "8.47.0", "commitizen": "4.3.1", "eslint": "8.57.0", "eslint-config-prettier": "^10.0.0", "husky": "^9.0.11", "inquirer": "8", "jest": "30.2.0", "jest-junit": "16.0.0", "lint-staged": "^16.0.0", "prettier": "3.6.2", "release-it": "19.0.6", "ts-jest": "29.4.5", "ts-node": "10.9.2", "tslib": "2.8.1", "typescript": "5.9.3" }, "optionalDependencies": { "config": "4.x", "dotenv": "17.x" }, "resolutions": { "conventional-changelog-conventionalcommits": "8.0.0" }, "lint-staged": { "**/*": "yarn prettier --write --ignore-unknown" } }