smartpdf/package.json

54 lines
1.3 KiB
JSON
Raw Normal View History

2018-10-06 13:25:45 +00:00
{
2023-07-10 08:17:20 +00:00
"name": "@push.rocks/smartpdf",
2024-03-19 16:52:28 +00:00
"version": "3.0.17",
2018-10-06 15:35:26 +00:00
"private": false,
2018-10-06 13:25:45 +00:00
"description": "create pdfs on the fly",
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": {
2023-07-26 12:17:11 +00:00
"@gitzone/tsbuild": "^2.1.66",
2022-09-16 06:27:25 +00:00
"@gitzone/tsdoc": "^1.1.12",
2023-07-26 12:17:11 +00:00
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.5"
2018-10-06 13:25:45 +00:00
},
"dependencies": {
2023-07-26 12:17:11 +00:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartfile": "^10.0.28",
"@push.rocks/smartnetwork": "^3.0.0",
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartpuppeteer": "^2.0.2",
"@push.rocks/smartunique": "^3.0.3",
"@tsclass/tsclass": "^4.0.42",
"@types/express": "^4.17.17",
2022-06-15 20:14:55 +00:00
"express": "^4.18.1",
2022-09-15 18:52:22 +00:00
"pdf-merger-js": "^3.4.0",
2022-01-05 16:20:28 +00:00
"pdf2json": "^2.0.0"
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"
2019-05-28 21:57:50 +00:00
]
2023-07-26 12:17:12 +00:00
}