tauri-plugin-thermal-printer 1.0.0 → 1.0.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/README.md +1 -6
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -151,15 +151,10 @@ The plugin translates all sections into **ESC/POS** (Escape Sequence for Point o
|
|
|
151
151
|
cargo add tauri-plugin-thermal-printer
|
|
152
152
|
```
|
|
153
153
|
|
|
154
|
-
```toml
|
|
155
|
-
[dependencies]
|
|
156
|
-
tauri-plugin-thermal-printer = "version"
|
|
157
|
-
```
|
|
158
|
-
|
|
159
154
|
### Bun / NPM / PNPM
|
|
160
155
|
|
|
161
156
|
```bash
|
|
162
|
-
|
|
157
|
+
bun add tauri-plugin-thermal-printer
|
|
163
158
|
```
|
|
164
159
|
|
|
165
160
|
This library not only contains the connector to the backend. Also adds the types for the print structure...
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tauri-plugin-thermal-printer",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"author": "luis3132",
|
|
5
5
|
"description": "Plugin for Tauri to send esc/pos commands to thermal_printer",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "./dist-js/index.d.ts",
|
|
8
8
|
"main": "./dist-js/index.cjs",
|
|
9
9
|
"module": "./dist-js/index.js",
|
|
10
|
+
"license": "MIT",
|
|
10
11
|
"exports": {
|
|
11
12
|
"types": "./dist-js/index.d.ts",
|
|
12
13
|
"import": "./dist-js/index.js",
|