@litusarchieve18/agricore-utils 1.0.9 → 1.0.10

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 +2 -0
  2. package/package.json +9 -1
package/README.md CHANGED
@@ -129,6 +129,8 @@ Run the publish command:
129
129
  Bash
130
130
  npm publish --access public
131
131
  📝 Version History
132
+ V1.0.10 — add an explicit exports map
133
+
132
134
  V1.0.9 — added jwt function
133
135
 
134
136
  v1.0.8 — added temporary RESOURCE_REQUIREMENTS
package/package.json CHANGED
@@ -1,10 +1,18 @@
1
1
  {
2
2
  "name": "@litusarchieve18/agricore-utils",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Canonical Backend Utility Library for AgriCore",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
7
7
  "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js",
13
+ "default": "./dist/index.mjs"
14
+ }
15
+ },
8
16
  "files": [
9
17
  "dist"
10
18
  ],