UNPKG

pdflatex-ts

Version:

A TypeScript library for converting LaTeX files to PDF using pdflatex. Supports both file conversion and dynamic content generation.

83 lines (82 loc) 1.96 kB
{ "name": "pdflatex-ts", "version": "1.0.1", "description": "A TypeScript library for converting LaTeX files to PDF using pdflatex. Supports both file conversion and dynamic content generation.", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "jest --forceExit", "test:watch": "jest --watch", "test:coverage": "jest --coverage --forceExit", "test:debug": "jest --detectOpenHandles", "start": "node dist/index.js", "prepublishOnly": "npm run build && npm run test && node scripts/prepare-publish.js", "clean": "rimraf dist coverage", "lint": "npx eslint . --ext .js,.ts", "example": "node examples/basic-usage.js", "check": "npm run build && npm run test", "prepare": "husky" }, "lint-staged": { "*.{js,ts}": [ "prettier --write" ] }, "keywords": [ "latex", "pdf", "converter", "pdflatex", "typescript", "tex", "document", "generation", "node", "server-side" ], "author": "Iyari Maldonado", "license": "MIT", "type": "module", "os": [ "!browser" ], "cpu": [ "x64", "arm64" ], "repository": { "type": "git", "url": "https://github.com/MaestroMiyagi/pdflatex-ts" }, "bugs": { "url": "https://github.com/MaestroMiyagi/pdflatex-ts/issues" }, "homepage": "https://github.com/MaestroMiyagi/pdflatex-ts#readme", "engines": { "node": ">=14.0.0" }, "files": [ "dist", "README.md", "LICENSE" ], "devDependencies": { "@eslint/js": "^9.31.0", "@types/jest": "^30.0.0", "@types/node": "^24.0.14", "eslint": "^9.31.0", "globals": "^16.3.0", "husky": "^9.1.7", "jest": "^30.0.4", "prettier": "^3.6.2", "rimraf": "^5.0.10", "ts-jest": "^29.4.0", "typescript": "^5.8.3", "typescript-eslint": "^8.37.0" }, "peerDependencies": { "node": ">=14.0.0" } }