@react-keycloak-refork/core 5.0.0 → 8.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.
package/package.json CHANGED
@@ -1,55 +1,59 @@
1
- {
2
- "name": "@react-keycloak-refork/core",
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. React bindings for Keycloak javascript adapter (core)",
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
- "fork"
19
- ],
20
- "main": "lib-commonjs/index.js",
21
- "jsnext:main": "lib/index.js",
22
- "module": "lib/index.js",
23
- "typings": "lib/index.d.ts",
24
- "files": [
25
- "lib",
26
- "lib-commonjs"
27
- ],
28
- "publishConfig": {
29
- "access": "public"
30
- },
31
- "scripts": {
32
- "clean": "rimraf lib lib-commonjs",
33
- "prebuild": "npm run clean",
34
- "compile:commonjs": "tsc --module commonjs --outDir lib-commonjs",
35
- "compile:esnext": "tsc --module esnext --outDir lib",
36
- "compile": "run-p compile:*",
37
- "fixmaps:lib": "tweak_sourcemap_paths -a --include 'lib/**/*.js.map' 'lib-commonjs/**/*.js.map'",
38
- "fixmaps": "run-p fixmaps:*",
39
- "build": "run-s compile fixmaps",
40
- "test": "jest",
41
- "test:coverage": "jest --coverage",
42
- "prepublishOnly": "npm run build && cp ../../README.md . && cp ../../LICENSE.md ."
43
- },
44
- "peerDependencies": {
45
- "react": ">=18"
46
- },
47
- "dependencies": {
48
- "react-fast-compare": "^3.2.0"
49
- },
50
- "jest": {
51
- "preset": "ts-jest",
52
- "testEnvironment": "jsdom"
53
- },
54
- "gitHead": "0cd23235e898e822306c4f868c3e8dd10b45e41b"
55
- }
1
+ {
2
+ "name": "@react-keycloak-refork/core",
3
+ "version": "8.0.0",
4
+ "license": "MIT",
5
+ "description": "Fork of https://github.com/react-keycloak/react-keycloak.git with updated packages for Keycloak >=19. React bindings for Keycloak javascript adapter (core)",
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
+ "fork"
19
+ ],
20
+ "main": "lib-commonjs/index.js",
21
+ "jsnext:main": "lib/index.js",
22
+ "module": "lib/index.js",
23
+ "typings": "lib/index.d.ts",
24
+ "files": [
25
+ "lib",
26
+ "lib-commonjs"
27
+ ],
28
+ "publishConfig": {
29
+ "access": "public",
30
+ "registry": "https://registry.npmjs.org/"
31
+ },
32
+ "scripts": {
33
+ "clean": "rimraf lib lib-commonjs",
34
+ "prebuild": "npm run clean",
35
+ "compile:commonjs": "tsc --module commonjs --outDir lib-commonjs",
36
+ "compile:esnext": "tsc --module esnext --outDir lib",
37
+ "compile": "run-p compile:*",
38
+ "fixmaps:lib": "tweak_sourcemap_paths -a --include 'lib/**/*.js.map' 'lib-commonjs/**/*.js.map'",
39
+ "fixmaps": "run-p fixmaps:*",
40
+ "build": "run-s compile fixmaps",
41
+ "test": "jest",
42
+ "test:coverage": "jest --coverage",
43
+ "prepublishOnly": "npm run build && cp ../../README.md . && cp ../../LICENSE.md ."
44
+ },
45
+ "peerDependencies": {
46
+ "react": ">=19"
47
+ },
48
+ "dependencies": {
49
+ "react-fast-compare": "^3.2.2"
50
+ },
51
+ "jest": {
52
+ "preset": "ts-jest",
53
+ "testEnvironment": "jsdom",
54
+ "setupFilesAfterEnv": [
55
+ "<rootDir>/test/test-utils.tsx"
56
+ ]
57
+ },
58
+ "gitHead": "7c156b0d876f2fae1ab076ac53c3730f7ba59cf9"
59
+ }