@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.
Files changed (2) hide show
  1. package/README.md +26 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # @zebrash/core
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@zebrash/core?color=cb3837&logo=npm)](https://www.npmjs.com/package/@zebrash/core)
4
+ [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zebrash/core",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Engine for the @zebrash family — pure-TS ZPL parser + renderer. Internal package; consume @zebrash/node or @zebrash/browser.",
5
5
  "keywords": [
6
6
  "barcode",