decktape/package.json

43 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "decktape",
2017-08-25 16:15:07 +03:00
"description": "High-quality PDF exporter for HTML presentation frameworks",
2017-08-17 19:15:50 +03:00
"author": "Antonin Stefanutti",
2023-08-04 18:32:08 +03:00
"version": "3.10.0",
2017-08-17 19:15:50 +03:00
"homepage": "https://github.com/astefanutti/decktape",
2018-01-30 12:13:29 +03:00
"license": "MIT",
"main": "decktape.js",
"type": "module",
2017-08-17 19:15:50 +03:00
"bin": {
"decktape": "decktape.js"
},
"scripts": {
2022-12-16 11:05:42 +03:00
"start": "node decktape.js",
2023-01-30 13:57:53 +03:00
"test:generate-pdfs": "node test/run-decktape.js",
"test:generate-snapshot-screenshots": "SNAPSHOT=true playwright test --update-snapshots",
2022-12-16 11:05:42 +03:00
"test": "playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astefanutti/decktape.git"
},
"bugs": {
"url": "https://github.com/astefanutti/decktape/issues"
},
2017-08-17 19:15:50 +03:00
"dependencies": {
"chalk": "5.1.2",
"fonteditor-core": "2.1.11",
2021-11-28 14:40:30 +03:00
"pdf-lib": "1.17.1",
"puppeteer": "20.9.0",
"puppeteer-core": "20.9.0",
"urijs": "1.19.11"
2017-08-17 19:15:50 +03:00
},
"engines": {
2023-06-23 14:02:01 +03:00
"node": ">=16.3.0"
2022-12-16 11:05:42 +03:00
},
"devDependencies": {
"koa": "2.14.1",
"koa-static": "5.0.0",
"@playwright/test": "1.28.1"
2017-08-17 19:15:50 +03:00
}
}