@zpl-toolchain/core 0.1.2 → 0.1.4
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/package.json +10 -3
package/package.json
CHANGED
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zpl-toolchain/core",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "ZPL II toolchain — parse, validate, and
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "ZPL II toolchain — parse, validate, format, and print Zebra Programming Language files (see @zpl-toolchain/print for printing)",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=18"
|
|
11
|
+
},
|
|
6
12
|
"exports": {
|
|
7
13
|
".": {
|
|
8
14
|
"types": "./dist/index.d.ts",
|
|
9
|
-
"import": "./dist/index.js"
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"default": "./dist/index.js"
|
|
10
17
|
}
|
|
11
18
|
},
|
|
12
19
|
"scripts": {
|