mirror of
https://github.com/keycloak/keycloak-js.git
synced 2026-05-26 13:50:39 +00:00
f73b88c5ef
Closes #181 Signed-off-by: Jon Koops <jonkoops@gmail.com>
48 lines
1013 B
JSON
48 lines
1013 B
JSON
{
|
|
"name": "keycloak-js",
|
|
"version": "999.0.0-SNAPSHOT",
|
|
"type": "module",
|
|
"description": "A client-side JavaScript OpenID Connect library that can be used to secure web applications.",
|
|
"scripts": {
|
|
"lint": "ts-standard",
|
|
"guides": "node docs/guides/guides.mjs $npm_package_version"
|
|
},
|
|
"workspaces": [
|
|
"test"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./lib/keycloak.d.ts",
|
|
"default": "./lib/keycloak.js"
|
|
},
|
|
"./authz": {
|
|
"types": "./lib/keycloak-authz.d.ts",
|
|
"default": "./lib/keycloak-authz.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/keycloak/keycloak-js.git"
|
|
},
|
|
"author": "Keycloak",
|
|
"license": "Apache-2.0",
|
|
"homepage": "https://www.keycloak.org",
|
|
"keywords": [
|
|
"keycloak",
|
|
"sso",
|
|
"oauth",
|
|
"oauth2",
|
|
"authentication"
|
|
],
|
|
"devDependencies": {
|
|
"jszip": "^3.10.1",
|
|
"ts-standard": "^12.0.2"
|
|
}
|
|
}
|