primux 1.0.2 → 1.0.3
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 +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "primux",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Primux — A lightweight JavaScript utility library for both ESM and CommonJS environments.",
|
|
5
5
|
"main": "primux.min.cjs.js",
|
|
6
6
|
"module": "primux.esm.min.mjs",
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
"README.md",
|
|
12
12
|
"LICENSE"
|
|
13
13
|
],
|
|
14
|
+
"exports": {
|
|
15
|
+
"import": "./primux.esm.min.mjs",
|
|
16
|
+
"require": "./primux.min.cjs.js"
|
|
17
|
+
},
|
|
14
18
|
"scripts": {
|
|
15
19
|
"prepublishOnly": "echo 'Publishing Primux...' && exit 0"
|
|
16
20
|
},
|