qrlayout-core 1.0.3 → 1.0.5
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 +6 -2
- package/package.json +18 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# qrlayout-core
|
|
2
2
|
|
|
3
|
-
A powerful, framework-agnostic engine for designing and printing QR code
|
|
3
|
+
A powerful, framework-agnostic QR code layout engine for designing and printing QR code stickers and labels. Create pixel-perfect layouts with text and QR codes, and export them to **PNG**, **PDF**, or **ZPL** (Zebra Programming Language).
|
|
4
4
|
|
|
5
5
|
> [!NOTE]
|
|
6
6
|
> This package is the core rendering engine. For a visual drag-and-drop designer and a live React example, visit our **[Live Demo](https://qr-layout-design-react-demo.netlify.app/)**.
|
|
@@ -12,10 +12,14 @@ A powerful, framework-agnostic engine for designing and printing QR code sticker
|
|
|
12
12
|
- **Dynamic Content**: Use variable placeholders (e.g., `{{name}}`, `{{sku}}`) to batch generate unique stickers.
|
|
13
13
|
- **Lightweight**: Minimal dependencies. PDF export is optional to keep bundle size small.
|
|
14
14
|
|
|
15
|
+
## Keywords
|
|
16
|
+
|
|
17
|
+
QR code, qrcode, qr-code, layout, sticker, label, generator, renderer, PDF, ZPL, barcode, thermal printer.
|
|
18
|
+
|
|
15
19
|
## Live Demo & Examples
|
|
16
20
|
|
|
17
21
|
- **[Interactive React Demo](https://qr-layout-design-react-demo.netlify.app/)**: A full-featured designer built with this package.
|
|
18
|
-
- **[React Demo Source Code](https://github.com/shashi089/qr-code-layout-generate-tool/examples/demo-react)**: Reference implementation for monorepo usage.
|
|
22
|
+
- **[React Demo Source Code](https://github.com/shashi089/qr-code-layout-generate-tool/tree/main/examples/demo-react)**: Reference implementation for monorepo usage.
|
|
19
23
|
|
|
20
24
|
## Installation
|
|
21
25
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qrlayout-core",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "QR
|
|
3
|
+
"version": "1.0.5",
|
|
4
|
+
"description": "QR code layout builder, renderer, and exporter for stickers, labels, and PDFs",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"qr",
|
|
7
|
+
"qrcode",
|
|
8
|
+
"qr-code",
|
|
9
|
+
"qr code",
|
|
10
|
+
"layout",
|
|
11
|
+
"sticker",
|
|
12
|
+
"label",
|
|
13
|
+
"generator",
|
|
14
|
+
"renderer",
|
|
15
|
+
"pdf",
|
|
16
|
+
"zpl",
|
|
17
|
+
"barcode",
|
|
18
|
+
"thermal-printer"
|
|
19
|
+
],
|
|
5
20
|
"author": "Shashidhar Naik <shashidharnaik8@gmail.com>",
|
|
6
21
|
"license": "MIT",
|
|
7
22
|
"repository": {
|
|
@@ -46,4 +61,4 @@
|
|
|
46
61
|
"@types/qrcode": "^1.5.6",
|
|
47
62
|
"typescript": "^5.3.3"
|
|
48
63
|
}
|
|
49
|
-
}
|
|
64
|
+
}
|