@f-o-t/e-signature 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -8,6 +8,15 @@ PAdES PDF signing with ICP-Brasil compliance. Signs PDF documents using CMS/PKCS
8
8
  bun add @f-o-t/e-signature
9
9
  ```
10
10
 
11
+ ## Features
12
+
13
+ - Visual signature appearances preserve all original page fonts and resources
14
+ - Works with PDFs from @react-pdf/renderer with CIDFont fonts
15
+ - PAdES-BES and ICP-Brasil compliant signatures
16
+ - RFC 3161 timestamp support
17
+ - QR code generation for signature verification
18
+ - Configurable DocMDP permissions for document modification control
19
+
11
20
  ## API
12
21
 
13
22
  ### `signPdf(pdf: Uint8Array, options: PdfSignOptions): Promise<Uint8Array>`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@f-o-t/e-signature",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "PAdES PDF signing with ICP-Brasil compliance",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -25,7 +25,7 @@
25
25
  "@f-o-t/asn1": "^1.0.0",
26
26
  "@f-o-t/crypto": "^1.0.0",
27
27
  "@f-o-t/digital-certificate": "^1.0.5",
28
- "@f-o-t/pdf": "^0.2.0",
28
+ "@f-o-t/pdf": "^0.3.0",
29
29
  "@f-o-t/qrcode": "^1.0.0",
30
30
  "zod": "^4.3.6"
31
31
  },