smartpdf/package.json

53 lines
1.3 KiB
JSON
Raw Normal View History

2018-10-06 13:25:45 +00:00
{
2018-10-06 15:35:26 +00:00
"name": "@pushrocks/smartpdf",
2022-10-26 20:58:26 +00:00
"version": "3.0.13",
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-03-24 13:32:49 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2018-10-06 13:25:45 +00:00
},
"devDependencies": {
2022-09-04 23:02:05 +00:00
"@gitzone/tsbuild": "^2.1.65",
2022-09-16 06:27:25 +00:00
"@gitzone/tsdoc": "^1.1.12",
2022-06-15 20:14:55 +00:00
"@gitzone/tsrun": "^1.2.35",
2022-09-04 23:02:05 +00:00
"@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^5.0.4",
2022-09-15 18:52:22 +00:00
"@types/node": "^18.7.18"
2018-10-06 13:25:45 +00:00
},
"dependencies": {
2022-09-13 16:26:14 +00:00
"@pushrocks/smartdelay": "^2.0.13",
2022-09-04 23:02:05 +00:00
"@pushrocks/smartfile": "^10.0.5",
2022-03-24 22:32:27 +00:00
"@pushrocks/smartnetwork": "^3.0.0",
2022-03-24 13:32:49 +00:00
"@pushrocks/smartpath": "^5.0.5",
"@pushrocks/smartpromise": "^3.1.7",
2022-09-04 23:02:05 +00:00
"@pushrocks/smartpuppeteer": "^2.0.2",
2021-03-05 15:16:22 +00:00
"@pushrocks/smartunique": "^3.0.3",
2022-09-15 18:52:22 +00:00
"@tsclass/tsclass": "^4.0.21",
"@types/express": "^4.17.14",
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
]
2021-04-14 11:35:06 +00:00
}