@fauzi-dhuhuri/react-pdf-pdfkit 5.1.2-zi-1
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/LICENSE +8 -0
- package/README.md +73 -0
- package/lib/pdfkit.browser.js +50147 -0
- package/lib/pdfkit.js +42434 -0
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fauzi-dhuhuri/react-pdf-pdfkit",
|
|
3
|
+
"version": "5.1.2-zi-1",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"description": "A PDF generation library for Node.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./lib/pdfkit.js",
|
|
8
|
+
"browser": {
|
|
9
|
+
"./lib/pdfkit.js": "./lib/pdfkit.browser.js"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/diegomura/react-pdf.git",
|
|
14
|
+
"directory": "packages/pdfkit"
|
|
15
|
+
},
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "Devon Govett",
|
|
18
|
+
"email": "devongovett@gmail.com",
|
|
19
|
+
"url": "http://badassjs.com/"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"test": "vitest",
|
|
23
|
+
"clear": "rimraf ./lib ./src/font/data/*.json",
|
|
24
|
+
"parse:afm": "node ./src/font/data/compressData.js",
|
|
25
|
+
"build": "npm run clear && npm run parse:afm && rollup -c ",
|
|
26
|
+
"watch": "npm run clear && npm run parse:afm && rollup -c -w"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"lib"
|
|
30
|
+
],
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@babel/runtime": "^7.20.13",
|
|
33
|
+
"browserify-zlib": "^0.2.0",
|
|
34
|
+
"@noble/ciphers": "^1.0.0",
|
|
35
|
+
"@noble/hashes": "^1.6.0",
|
|
36
|
+
"fontkit": "^2.0.2",
|
|
37
|
+
"js-md5": "^0.8.3",
|
|
38
|
+
"linebreak": "^1.1.0",
|
|
39
|
+
"png-js": "^2.0.0",
|
|
40
|
+
"vite-compatible-readable-stream": "^3.6.1"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"iconv-lite": "^0.4.13"
|
|
44
|
+
}
|
|
45
|
+
}
|