-
Notifications
You must be signed in to change notification settings - Fork 176
/
package.json
42 lines (42 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "decktape",
"description": "High-quality PDF exporter for HTML presentation frameworks",
"author": "Antonin Stefanutti",
"version": "3.14.0",
"homepage": "https://github.com/astefanutti/decktape",
"license": "MIT",
"main": "decktape.js",
"type": "module",
"bin": {
"decktape": "decktape.js"
},
"scripts": {
"start": "node decktape.js",
"test:generate-pdfs": "node test/run-decktape.js",
"test:generate-snapshot-screenshots": "SNAPSHOT=true playwright test --update-snapshots",
"test": "playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astefanutti/decktape.git"
},
"bugs": {
"url": "https://github.com/astefanutti/decktape/issues"
},
"dependencies": {
"chalk": "5.3.0",
"fonteditor-core": "2.4.0",
"pdf-lib": "1.17.1",
"puppeteer": "23.1.0",
"puppeteer-core": "23.1.0",
"urijs": "1.19.11"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"koa": "2.15.3",
"koa-static": "5.0.0",
"@playwright/test": "1.45.1"
}
}