takumi-pdf 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/index.js +3 -0
- package/package.json +19 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# takumi-pdf
|
|
2
|
+
|
|
3
|
+
HTML and JSX in, paginated vector PDF out. No headless browser.
|
|
4
|
+
|
|
5
|
+
Built on the [takumi](https://github.com/kane50613/takumi) rendering engine: real CSS layout, embedded subset fonts with selectable text, page breaks (`break-before`, `break-inside: avoid`, `box-decoration-break`), and repeating headers/footers with page counters.
|
|
6
|
+
|
|
7
|
+
This version reserves the package name while the first release is being finished. Follow progress at [github.com/kane50613/takumi](https://github.com/kane50613/takumi).
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "takumi-pdf",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "HTML and JSX to paginated vector PDF, powered by the takumi rendering engine. Placeholder for the upcoming release.",
|
|
5
|
+
"license": "MIT OR Apache-2.0",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/kane50613/takumi.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://takumi.kane.tw",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"pdf",
|
|
13
|
+
"invoice",
|
|
14
|
+
"html-to-pdf",
|
|
15
|
+
"jsx",
|
|
16
|
+
"wasm",
|
|
17
|
+
"takumi"
|
|
18
|
+
]
|
|
19
|
+
}
|