Files
pdfme/packages/pdf-lib/package.json
dependabot[bot] 1579a040e0 Bump node-html-better-parser from 1.5.1 to 1.5.3 (#1171)
Bumps [node-html-better-parser](https://github.com/Sharcoux/node-html-parser) from 1.5.1 to 1.5.3.
- [Commits](https://github.com/Sharcoux/node-html-parser/compare/1.5.1...1.5.3)

---
updated-dependencies:
- dependency-name: node-html-better-parser
  dependency-version: 1.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-12 19:45:04 +09:00

90 lines
2.0 KiB
JSON

{
"name": "@pdfme/pdf-lib",
"version": "0.0.0",
"sideEffects": false,
"author": "hand-dot",
"license": "MIT",
"keywords": [
"pdf-lib",
"pdf",
"document",
"create",
"modify",
"creation",
"modification",
"edit",
"editing",
"typescript",
"javascript",
"library"
],
"description": "Create and modify PDF files with JavaScript",
"homepage": "https://pdfme.com",
"repository": {
"type": "git",
"url": "git@github.com:pdfme/pdfme.git"
},
"bugs": {
"url": "https://github.com/pdfme/pdfme/issues"
},
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/types/src/index.d.ts",
"exports": {
".": {
"import": {
"node": "./dist/node/src/index.js",
"default": "./dist/esm/src/index.js"
},
"require": "./dist/cjs/src/index.js",
"types": "./dist/types/src/index.d.ts"
}
},
"scripts": {
"dev": "tsc -p tsconfig.esm.json -w",
"build": "npm-run-all --parallel build:cjs build:esm build:node",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:node": "tsc -p tsconfig.node.json",
"clean": "rimraf dist",
"lint": "eslint --ext .ts src --config eslint.config.mjs",
"test": "jest",
"prune": "ts-prune src",
"prettier": "prettier --write 'src/**/*.ts'"
},
"dependencies": {
"@pdf-lib/standard-fonts": "^1.0.0",
"@pdf-lib/upng": "^1.0.1",
"color": "^4.2.3",
"node-html-better-parser": "^1.5.3",
"pako": "^2.1.0"
},
"devDependencies": {
"@pdf-lib/fontkit": "^1.1.0",
"@types/color": "^4.2.0",
"@types/pako": "^2.0.3"
},
"jest": {
"resolver": "ts-jest-resolver",
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.ts?$": [
"ts-jest",
{
"tsconfig": "tsconfig.esm.json"
}
]
},
"testMatch": [
"**/*.test.ts",
"**/*.spec.ts"
]
},
"publishConfig": {
"access": "public"
}
}