@econneq/gql-auth 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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +16 -9
package/README.md CHANGED
@@ -19,4 +19,4 @@ This package standardizes how frontend projects interact with a Django GraphQL b
19
19
  ## 📦 Installation
20
20
 
21
21
  ```bash
22
- npm install @e-conneq/gql-auth
22
+ npm install @econneq/gql-auth
package/package.json CHANGED
@@ -1,19 +1,26 @@
1
1
  {
2
2
  "name": "@econneq/gql-auth",
3
- "version": "1.0.0",
4
- "main": "dist/index.js",
5
- "module": "dist/index.mjs",
6
- "types": "dist/index.d.ts",
3
+ "version": "1.0.1",
4
+ "main": "./dist/index.js",
5
+ "module": "./dist/index.mjs",
6
+ "types": "./dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.mjs",
11
+ "require": "./dist/index.js"
12
+ }
13
+ },
7
14
  "files": [
8
15
  "dist"
9
16
  ],
10
17
  "peerDependencies": {
11
- "next": "^13.0.0 || ^14.0.0 || ^15.0.0",
12
- "react": "^18.0.0 || ^19.0.0",
13
- "react-dom": "^18.0.0 || ^19.0.0",
14
- "@apollo/client": "^3.0.0",
18
+ "@apollo/client": "^4.0.0",
15
19
  "graphql": "^16.0.0",
16
- "sweetalert2": "^11.26.17"
20
+ "next": "^16.0.0",
21
+ "react": "^19.0.0",
22
+ "react-dom": "^18.0.0 || ^19.0.0",
23
+ "sweetalert2": "^11.0.0"
17
24
  },
18
25
  "dependencies": {
19
26
  "js-cookie": "^3.0.0"