mirror of
https://github.com/pdfme/pdfme.git
synced 2026-04-22 06:59:45 -04:00
84 lines
1.9 KiB
JSON
84 lines
1.9 KiB
JSON
{
|
|
"name": "@pdfme/generator",
|
|
"version": "1.1.9",
|
|
"sideEffects": false,
|
|
"author": "hand-dot",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"pdf",
|
|
"pdf-generation",
|
|
"pdf-designer",
|
|
"pdf-viewer",
|
|
"typescript",
|
|
"react"
|
|
],
|
|
"description": "TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!",
|
|
"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": "./dist/esm/src/index.js",
|
|
"require": "./dist/cjs/src/index.js"
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"scripts": {
|
|
"develop": "tsc -w",
|
|
"build": "npm run build:cjs && npm run build:esm",
|
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
"build:esm": "tsc -p tsconfig.esm.json",
|
|
"clean": "rimraf dist",
|
|
"lint": "tsc --noEmit",
|
|
"test": "jest",
|
|
"lint:watch": "tsc -w --noEmit",
|
|
"test:watch": "jest --coverage --watch",
|
|
"prune": "ts-prune src"
|
|
},
|
|
"dependencies": {
|
|
"@pdfme/common": "^1.0.0",
|
|
"@pdfme/pdf-lib": "^1.17.3",
|
|
"atob": "^2.1.2",
|
|
"bwip-js": "^3.2.2",
|
|
"fontkit": "^2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bwip-js": "^3.0.0",
|
|
"@types/pngjs": "^6.0.1",
|
|
"jsqr": "^1.4.0",
|
|
"pdf2json": "^2.0.0",
|
|
"pngjs": "^6.0.0"
|
|
},
|
|
"jest": {
|
|
"resolver": "ts-jest-resolver",
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"ts"
|
|
],
|
|
"transform": {
|
|
"^.+\\.ts$": "ts-jest"
|
|
},
|
|
"globals": {
|
|
"ts-jest": {
|
|
"tsconfig": "tsconfig.esm.json"
|
|
}
|
|
},
|
|
"testMatch": [
|
|
"**/*.test.ts"
|
|
]
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|