@deephaven/js-plugin-auth-keycloak 0.2.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/LICENSE +176 -0
- package/README.md +16 -0
- package/dist/index.js +2218 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@deephaven/js-plugin-auth-keycloak",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Deephaven Keycloak authentication plugin",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"Deephaven",
|
|
7
|
+
"plugin",
|
|
8
|
+
"deephaven-js-plugin",
|
|
9
|
+
"auth",
|
|
10
|
+
"authentication",
|
|
11
|
+
"keycloak"
|
|
12
|
+
],
|
|
13
|
+
"author": "Deephaven Data Labs LLC",
|
|
14
|
+
"license": "Apache-2.0",
|
|
15
|
+
"main": "dist/index.js",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/deephaven/deephaven-js-plugins"
|
|
19
|
+
},
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/deephaven/deephaven-js-plugins/issues"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/deephaven/deephaven-js-plugins",
|
|
24
|
+
"scripts": {
|
|
25
|
+
"start": "vite build --watch",
|
|
26
|
+
"build": "vite build"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@types/plotly.js": "^2.12.18",
|
|
30
|
+
"@types/react": "^17.0.2",
|
|
31
|
+
"@vitejs/plugin-react-swc": "^3.0.0",
|
|
32
|
+
"react": "^17.0.2",
|
|
33
|
+
"typescript": "^4.5.4",
|
|
34
|
+
"vite": "~4.1.4"
|
|
35
|
+
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"react": "^17.0.2"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@deephaven/auth-plugins": "^0.38.0",
|
|
41
|
+
"@deephaven/components": "^0.38.0",
|
|
42
|
+
"@deephaven/jsapi-bootstrap": "^0.38.0",
|
|
43
|
+
"@deephaven/jsapi-components": "^0.38.0",
|
|
44
|
+
"@deephaven/jsapi-types": "^0.38.0",
|
|
45
|
+
"@deephaven/log": "^0.38.0",
|
|
46
|
+
"@deephaven/utils": "^0.38.0",
|
|
47
|
+
"keycloak-js": "^21.0.2"
|
|
48
|
+
},
|
|
49
|
+
"publishConfig": {
|
|
50
|
+
"access": "public"
|
|
51
|
+
},
|
|
52
|
+
"files": [
|
|
53
|
+
"dist"
|
|
54
|
+
],
|
|
55
|
+
"gitHead": "8e77e7d23f2504358efae0b7adfe8eb686344215"
|
|
56
|
+
}
|