@react-keycloak-refork/ssr 5.0.0 → 6.0.0

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 +3 -3
  2. package/package.json +72 -71
package/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  # React Keycloak <!-- omit in toc -->
4
4
 
5
- > SSR bindings for [Keycloak](https://www.keycloak.org/). Fork of https://github.com/react-keycloak/react-keycloak.git with updated packages for Keycloak >=26 support.
5
+ > SSR bindings for [Keycloak](https://www.keycloak.org/). Fork of https://github.com/react-keycloak/react-keycloak.git with updated packages for keycloak >=17 support.
6
6
 
7
- [![NPM (scoped)](https://img.shields.io/npm/v/@react-keycloak-fork/ssr?label=npm%20%7C%20ssr)](https://www.npmjs.com/package/@react-keycloak-fork/ssr)
7
+ [![NPM (scoped)](https://img.shields.io/npm/v/@react-keycloak-refork/ssr?label=npm%20%7C%20ssr)](https://www.npmjs.com/package/@react-keycloak-refork/ssr)
8
8
 
9
9
  [![License](https://img.shields.io/github/license/react-keycloak/react-keycloak.svg)](https://github.com/react-keycloak/react-keycloak/blob/master/LICENSE.md)
10
10
  [![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lerna.js.org/)
@@ -214,7 +214,7 @@ export default () => {
214
214
 
215
215
  ## Examples
216
216
 
217
- See inside `examples/nextjs-app` and `examples/razzle-app` folders of [`@react-keycloak-fork/react-keycloak-examples`](https://github.com/react-keycloak/react-keycloak-examples) repository for sample implementations.
217
+ See inside `examples/nextjs-app` and `examples/razzle-app` folders of [`@react-keycloak-refork/react-keycloak-examples`](https://github.com/react-keycloak/react-keycloak-examples) repository for sample implementations.
218
218
 
219
219
  ## Guides and Articles
220
220
 
package/package.json CHANGED
@@ -1,71 +1,72 @@
1
- {
2
- "name": "@react-keycloak-refork/ssr",
3
- "version": "5.0.0",
4
- "license": "MIT",
5
- "description": "Fork of https://github.com/react-keycloak/react-keycloak.git with updated packages for Keycloak >=26. SSR bindings for Keycloak javascript adapter",
6
- "repository": {
7
- "type": "git",
8
- "url": "git+https://github.com/leoluzh/react-keycloak-fork.git"
9
- },
10
- "author": "leoluzh",
11
- "bugs": {
12
- "url": "https://github.com/leoluzh/react-keycloak-fork/issues"
13
- },
14
- "homepage": "https://github.com/leoluzh/react-keycloak-fork#readme",
15
- "keywords": [
16
- "react",
17
- "keycloak",
18
- "keycloak-js",
19
- "nextjs",
20
- "razzle"
21
- ],
22
- "main": "lib-commonjs/index.js",
23
- "jsnext:main": "lib/index.js",
24
- "module": "lib/index.js",
25
- "typings": "lib/index.d.ts",
26
- "files": [
27
- "lib",
28
- "lib-commonjs"
29
- ],
30
- "publishConfig": {
31
- "access": "public"
32
- },
33
- "scripts": {
34
- "clean": "rimraf lib lib-commonjs",
35
- "prebuild": "npm run clean",
36
- "compile:commonjs": "tsc --module commonjs --outDir lib-commonjs",
37
- "compile:esnext": "tsc --module esnext --outDir lib",
38
- "compile": "run-p compile:*",
39
- "fixmaps:lib": "tweak_sourcemap_paths -a --include 'lib/**/*.js.map' 'lib-commonjs/**/*.js.map'",
40
- "fixmaps": "run-p fixmaps:*",
41
- "build": "run-s compile fixmaps",
42
- "test": "jest",
43
- "test:coverage": "jest --coverage",
44
- "prepublishOnly": "npm run build && cp ../../LICENSE.md ."
45
- },
46
- "peerDependencies": {
47
- "keycloak-js": ">=26.2.0",
48
- "react": ">=18.0",
49
- "typescript": ">=3.8"
50
- },
51
- "peerDependenciesMeta": {
52
- "typescript": {
53
- "optional": true
54
- }
55
- },
56
- "dependencies": {
57
- "@babel/runtime": "^7.17.9",
58
- "@react-keycloak-refork/core": "file:../core",
59
- "detect-node": "^2.1.0",
60
- "hoist-non-react-statics": "^3.3.2",
61
- "js-base64": "^3.7.2",
62
- "js-cookie": "^3.0.1"
63
- },
64
- "jest": {
65
- "preset": "ts-jest",
66
- "testEnvironment": "jsdom"
67
- },
68
- "devDependencies": {
69
- "keycloak-js": "^26.2.0"
70
- }
71
- }
1
+ {
2
+ "name": "@react-keycloak-refork/ssr",
3
+ "version": "6.0.0",
4
+ "license": "MIT",
5
+ "description": "Fork of https://github.com/react-keycloak/react-keycloak.git with updated packages for Keycloak >=17. SSR bindings for Keycloak javascript adapter",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/leoluzh/react-keycloak-fork.git"
9
+ },
10
+ "author": "leoluzh",
11
+ "bugs": {
12
+ "url": "https://github.com/leoluzh/react-keycloak-fork/issues"
13
+ },
14
+ "homepage": "https://github.com/leoluzh/react-keycloak-fork#readme",
15
+ "keywords": [
16
+ "react",
17
+ "keycloak",
18
+ "keycloak-js",
19
+ "nextjs",
20
+ "razzle"
21
+ ],
22
+ "main": "lib-commonjs/index.js",
23
+ "jsnext:main": "lib/index.js",
24
+ "module": "lib/index.js",
25
+ "typings": "lib/index.d.ts",
26
+ "files": [
27
+ "lib",
28
+ "lib-commonjs"
29
+ ],
30
+ "publishConfig": {
31
+ "access": "public"
32
+ },
33
+ "scripts": {
34
+ "clean": "rimraf lib lib-commonjs",
35
+ "prebuild": "npm run clean",
36
+ "compile:commonjs": "tsc --module commonjs --outDir lib-commonjs",
37
+ "compile:esnext": "tsc --module esnext --outDir lib",
38
+ "compile": "run-p compile:*",
39
+ "fixmaps:lib": "tweak_sourcemap_paths -a --include 'lib/**/*.js.map' 'lib-commonjs/**/*.js.map'",
40
+ "fixmaps": "run-p fixmaps:*",
41
+ "build": "run-s compile fixmaps",
42
+ "test": "jest",
43
+ "test:coverage": "jest --coverage",
44
+ "prepublishOnly": "npm run build && cp ../../LICENSE.md ."
45
+ },
46
+ "peerDependencies": {
47
+ "keycloak-js": ">=26.0.0",
48
+ "react": ">=16.0",
49
+ "typescript": ">=3.8"
50
+ },
51
+ "peerDependenciesMeta": {
52
+ "typescript": {
53
+ "optional": true
54
+ }
55
+ },
56
+ "dependencies": {
57
+ "@babel/runtime": "^7.17.9",
58
+ "@react-keycloak-refork/core": "^6.0.0",
59
+ "detect-node": "^2.1.0",
60
+ "hoist-non-react-statics": "^3.3.2",
61
+ "js-base64": "^3.7.2",
62
+ "js-cookie": "^3.0.1"
63
+ },
64
+ "jest": {
65
+ "preset": "ts-jest",
66
+ "testEnvironment": "jsdom"
67
+ },
68
+ "devDependencies": {
69
+ "keycloak-js": "^26.2.0"
70
+ },
71
+ "gitHead": "7ae156f5285095da22ab864cd8ab78f39ad80624"
72
+ }