printmaker
Version:
Generate PDF documents and from JavaScript objects
56 lines (55 loc) • 1.57 kB
JSON
{
"name": "printmaker",
"version": "0.1.0-pretest.1",
"description": "Generate PDF documents and from JavaScript objects",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/eclipsesource/pdf-maker.git"
},
"homepage": "https://github.com/eclipsesource/pdf-maker#readme",
"keywords": [
"pdf-maker",
"pdf"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"module": "./dist/index.js"
},
"engines": {
"node": "^16.13.0",
"npm": "8"
},
"scripts": {
"start": "rm -rf dist/ && tsc && concurrently -k -n build,example npm:watch:build npm:watch:example",
"watch:build": "tsc -w",
"watch:example": "nodemon -w dist -w scripts -w examples scripts/make-examples.js",
"build": "tsc",
"lint": "eslint '{src,test}/**/*.{js,ts}' --max-warnings 0 --format visualstudio",
"test": "jest"
},
"dependencies": {
"@pdf-lib/fontkit": "^1.1.1",
"pdf-lib": "^1.17.1"
},
"devDependencies": {
"@fontsource/dejavu-sans": "^4.5.4",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"concurrently": "^7.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^28.0.3",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"ts-jest": "^28.0.0",
"typescript": "^4.5.5",
"wawoff2": "^2.0.1"
}
}