-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.34 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "asciidoctor-pdf",
"version": "1.0.3",
"description": "A PDF converter for AsciiDoc based on web technologies",
"type": "module",
"engines": {
"node": ">=21",
"npm": ">=8.0.0"
},
"bin": {
"asciidoctor-pdf": "bin/asciidoctor-pdf",
"asciidoctor-web-pdf": "bin/asciidoctor-web-pdf"
},
"files": [
"bin",
"lib",
"css"
],
"scripts": {
"build": "node tasks/prepare-binaries.js",
"test": "npm run test:smoke && npm run test:js",
"test:smoke": "./bin/asciidoctor-web-pdf --version",
"test:js": "node --test --test-timeout=30000 test/*_test.js",
"lint": "biome check lib/ test/ tasks/",
"format": "biome format --write lib/ test/ tasks/",
"test:update-linux-reference": "docker build -f test/Dockerfile -t asciidoctor/web-pdf-test . && docker run --name asciidoctorwebpdftest asciidoctor/web-pdf-test:latest; docker cp asciidoctorwebpdftest:/app/test/output/. ./test/reference/linux/ && docker rm asciidoctorwebpdftest",
"docs:build": "antora antora-playbook.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ggrossetie/asciidoctor-web-pdf.git"
},
"keywords": [
"asciidoc",
"asciidoctor",
"pdf"
],
"author": "Guillaume Grossetie (https://github.com/ggrossetie)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ggrossetie/asciidoctor-web-pdf/issues"
},
"homepage": "https://github.com/ggrossetie/asciidoctor-web-pdf#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.2.1",
"@fortawesome/free-brands-svg-icons": "6.2.1",
"@fortawesome/free-regular-svg-icons": "6.2.1",
"@fortawesome/free-solid-svg-icons": "6.2.1",
"@puppeteer/browsers": "~3.0",
"@vivliostyle/viewer": "2.44.1",
"asciidoctor": ">= 4.0.11 < 5",
"chokidar": "~3.5",
"fs-extra": "~11.1.0",
"highlight.js": "^11.11.1",
"html-entities": "~2.3",
"mathjax": "^4.1.2",
"pdf-lib": "~1.17",
"puppeteer": "25.1.0"
},
"devDependencies": {
"@antora/cli": "3.1.15",
"@antora/site-generator": "3.1.15",
"@bestikk/changelog": "^1.0.0",
"@biomejs/biome": "2.4.15",
"archiver": "~8.0",
"esbuild": "0.28.2",
"node-html-parser": "~7.1",
"nunjucks": "~3.2",
"pixelmatch": "~7.2",
"postject": "1.0.0-alpha.6"
},
"peerDependencies": {
"asciidoctor": ">= 4.0.11 < 5"
}
}