@forgepack/request 1.0.6 → 1.0.8

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 (1) hide show
  1. package/package.json +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forgepack/request",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "Opinionated Axios-based HTTP client for React applications with JWT support, interceptors, and API request standardization.",
5
5
  "homepage": "https://forgepack.dev/packages/request",
6
6
  "bugs": {
@@ -36,15 +36,15 @@
36
36
  "react-crud"
37
37
  ],
38
38
  "author": "Marcelo Gadelha",
39
- "type": "commonjs",
40
- "main": "dist/index.js",
39
+ "type": "module",
40
+ "main": "dist/index.cjs",
41
41
  "types": "dist/index.d.ts",
42
- "module": "dist/index.mjs",
42
+ "module": "dist/index.js",
43
43
  "exports": {
44
44
  ".": {
45
45
  "types": "./dist/index.d.ts",
46
- "import": "./dist/index.mjs",
47
- "require": "./dist/index.js"
46
+ "import": "./dist/index.js",
47
+ "require": "./dist/index.cjs"
48
48
  }
49
49
  },
50
50
  "sideEffects": false,