smartpdf/package.json

50 lines
1.2 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-06-12 17:26:34 +00:00
"version": "3.0.3",
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-03-24 22:32:27 +00:00
"@gitzone/tsbuild": "^2.1.61",
"@gitzone/tsrun": "^1.2.32",
2022-03-24 13:32:49 +00:00
"@gitzone/tstest": "^1.0.69",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^17.0.23"
2018-10-06 13:25:45 +00:00
},
"dependencies": {
2022-03-24 13:32:49 +00:00
"@pushrocks/smartfile": "^9.0.6",
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",
"@pushrocks/smartpuppeteer": "^2.0.0",
2021-03-05 15:16:22 +00:00
"@pushrocks/smartunique": "^3.0.3",
2021-10-14 08:59:45 +00:00
"@types/express": "^4.17.13",
2022-03-24 13:32:49 +00:00
"express": "^4.17.3",
"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
}