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

57 lines
1.4 KiB
JSON

{
"name": "@pdfme/converter",
"version": "0.0.0",
"description": "TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!",
"keywords": [
"pdf",
"pdf-designer",
"pdf-generation",
"pdf-viewer",
"react",
"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",
"browser": "./dist/index.js",
"node": "./dist/index.node.js",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build && tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"lint": "vp lint -c ../../.oxlintrc.json src",
"fmt": "vp fmt -c ../../.oxfmtrc.json src --write",
"test": "vitest run --config ../../vitest.config.ts"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.97",
"@pdfme/common": "*",
"@pdfme/pdf-lib": "*",
"pdfjs-dist": "^5.5.207"
},
"devDependencies": {
"@pdfme/generator": "*"
}
}