smartpdf/package.json

74 lines
1.8 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",
2025-02-25 18:06:45 +00:00
"version": "3.2.1",
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": {
2021-03-06 15:33:07 +00:00
"test": "(tstest test/ --web)",
2022-10-26 23:04:59 +02:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2018-10-06 13:25:45 +00:00
},
"devDependencies": {
"@git.zone/tsbuild": "^2.2.1",
"@git.zone/tsdoc": "^1.4.3",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^1.0.96",
"@push.rocks/tapbundle": "^5.5.6",
"@types/node": "^22.13.5"
2018-10-06 13:25:45 +00:00
},
"dependencies": {
2024-04-25 18:48:08 +02:00
"@push.rocks/smartbuffer": "^3.0.4",
2023-07-26 14:17:11 +02:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartfile": "^11.2.0",
2023-07-26 14:17:11 +02:00
"@push.rocks/smartnetwork": "^3.0.0",
2024-04-25 18:48:08 +02:00
"@push.rocks/smartpath": "^5.0.18",
"@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": "^4.4.0",
"@types/express": "^5.0.0",
"express": "^4.21.2",
2024-04-14 18:07:39 +02:00
"pdf-lib": "^1.17.1",
"pdf2json": "3.1.5"
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"
}
2024-09-27 23:21:31 +02:00
}