@zebrash/core 1.0.1 → 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.
- package/README.md +26 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# @zebrash/core
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@zebrash/core)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
|
|
6
|
+
Internal engine for the `@zebrash` family — the
|
|
7
|
+
[ZPL II](https://en.wikipedia.org/wiki/Zebra_Programming_Language) parser,
|
|
8
|
+
drawer, and barcode encoders, plus a platform abstraction selected at bundle
|
|
9
|
+
time via the `"browser"` field in `package.json`.
|
|
10
|
+
|
|
11
|
+
> **End users should not import `@zebrash/core` directly.** It has no built-in
|
|
12
|
+
> rasterization backend. Pick the runtime-appropriate wrapper instead:
|
|
13
|
+
>
|
|
14
|
+
> - **Node / Bun:** [`@zebrash/node`](https://www.npmjs.com/package/@zebrash/node)
|
|
15
|
+
> - **Browser:** [`@zebrash/browser`](https://www.npmjs.com/package/@zebrash/browser)
|
|
16
|
+
>
|
|
17
|
+
> Both expose the same `Parser` / `Drawer` / `LabelInfo` / `DrawerOptions` API.
|
|
18
|
+
|
|
19
|
+
## Documentation
|
|
20
|
+
|
|
21
|
+
See the [main README](https://github.com/Fountain-Bio/zebrash-ts#readme) for
|
|
22
|
+
usage, supported ZPL commands, and the SVG-output reference.
|
|
23
|
+
|
|
24
|
+
## License
|
|
25
|
+
|
|
26
|
+
MIT.
|
package/package.json
CHANGED