Files
smartpdf/package.json

74 lines
2.0 KiB
JSON
Raw Normal View History

2018-10-06 13:25:45 +00:00
{
2023-07-10 10:17:20 +02:00
"name": "@push.rocks/smartpdf",
"version": "3.3.0",
2018-10-06 17:35:26 +02:00
"private": false,
2024-04-14 18:07:39 +02:00
"description": "A library for creating PDFs dynamically from HTML or websites with additional features like merging PDFs.",
2021-03-05 15:38:11 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-24 14:32:49 +01:00
"type": "module",
2018-10-06 13:25:45 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --verbose --timeout 60)",
"build": "(tsbuild tsfolders --allowimplicitany)",
2022-10-26 23:04:59 +02:00
"buildDocs": "tsdoc"
2018-10-06 13:25:45 +00:00
},
"devDependencies": {
"@git.zone/tsbuild": "^2.6.4",
"@git.zone/tsdoc": "^1.5.0",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^2.3.2",
"@types/node": "^24.1.0"
2018-10-06 13:25:45 +00:00
},
"dependencies": {
"@push.rocks/smartbuffer": "^3.0.5",
2023-07-26 14:17:11 +02:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartfile": "^11.2.5",
"@push.rocks/smartnetwork": "^4.1.2",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartpuppeteer": "^2.0.5",
2024-04-25 18:48:08 +02:00
"@push.rocks/smartunique": "^3.0.9",
"@tsclass/tsclass": "^9.2.0",
"@types/express": "^5.0.3",
"express": "^5.1.0",
2024-04-14 18:07:39 +02:00
"pdf-lib": "^1.17.1",
"pdf2json": "3.2.0"
2019-05-28 23:57:50 +02:00
},
"files": [
2019-11-11 13:04:36 +01:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2021-03-05 15:38:11 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-11-11 13:04:36 +01:00
"dist_ts_web/**/*",
"assets/**/*",
2019-05-28 23:57:50 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2021-03-05 15:38:11 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 18:07:39 +02:00
],
"keywords": [
"PDF generation",
"HTML to PDF",
"website to PDF",
"PDF manipulation",
"puppeteer",
"express",
"node.js",
"typescript",
"automation",
"PDF merging",
"text extraction",
"PDF management"
2024-05-29 14:15:22 +02:00
],
"homepage": "https://code.foss.global/push.rocks/smartpdf",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartpdf.git"
},
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
2024-09-27 23:21:31 +02:00
}