smartpdf/package.json

74 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2018-10-06 13:25:45 +00:00
{
2023-07-10 08:17:20 +00:00
"name": "@push.rocks/smartpdf",
2024-04-30 15:48:12 +00:00
"version": "3.1.6",
2018-10-06 15:35:26 +00:00
"private": false,
2024-04-14 16:07:39 +00: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 13:32:49 +00: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 21:04:59 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2018-10-06 13:25:45 +00:00
},
"devDependencies": {
2024-04-26 11:29:32 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsdoc": "^1.1.12",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
2024-04-25 16:48:08 +00:00
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.12.7"
2018-10-06 13:25:45 +00:00
},
"dependencies": {
2024-04-25 16:48:08 +00:00
"@push.rocks/smartbuffer": "^3.0.4",
2023-07-26 12:17:11 +00:00
"@push.rocks/smartdelay": "^3.0.5",
2024-04-25 16:48:08 +00:00
"@push.rocks/smartfile": "^11.0.14",
2023-07-26 12:17:11 +00:00
"@push.rocks/smartnetwork": "^3.0.0",
2024-04-25 16:48:08 +00:00
"@push.rocks/smartpath": "^5.0.18",
2023-07-26 12:17:11 +00:00
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartpuppeteer": "^2.0.2",
2024-04-25 16:48:08 +00:00
"@push.rocks/smartunique": "^3.0.9",
"@tsclass/tsclass": "^4.0.54",
"@types/express": "^4.17.21",
"express": "^4.19.2",
2024-04-14 16:07:39 +00:00
"pdf-lib": "^1.17.1",
2024-04-30 15:48:11 +00:00
"pdf2json": "3.0.5",
2024-04-25 16:48:08 +00:00
"pdf2pic": "^3.1.1"
2019-05-28 21:57:50 +00:00
},
"files": [
2019-11-11 12:04:36 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2021-03-05 15:38:11 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-11-11 12:04:36 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-05-28 21:57:50 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-03-05 15:38:11 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 16:07:39 +00: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 12:15:22 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartpdf",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartpdf.git"
}
}