Files
pdfme/packages/pdf-lib/package.json
2026-03-21 10:20:23 +09:00

65 lines
1.5 KiB
JSON

{
"name": "@pdfme/pdf-lib",
"version": "0.0.0",
"description": "Create and modify PDF files with JavaScript",
"keywords": [
"create",
"creation",
"document",
"edit",
"editing",
"javascript",
"library",
"modification",
"modify",
"pdf",
"pdf-lib",
"typescript"
],
"homepage": "https://pdfme.com",
"bugs": {
"url": "https://github.com/pdfme/pdfme/issues"
},
"license": "MIT",
"author": "hand-dot",
"repository": {
"type": "git",
"url": "git@github.com:pdfme/pdfme.git"
},
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build && tsc -p tsconfig.build.json",
"clean": "rimraf --glob dist \"src/**/*.d.ts\"",
"lint": "vp lint -c ../../.oxlintrc.json src",
"fmt": "vp fmt -c ../../.oxfmtrc.json src --write",
"test": "vitest run --config ../../vitest.config.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.8",
"pako": "^2.1.0"
},
"devDependencies": {
"@pdf-lib/fontkit": "^1.1.0",
"@types/color": "^4.2.0",
"@types/pako": "^2.0.4"
}
}