2022-08-25 05:03:07 -04:00
|
|
|
{
|
2024-07-05 12:48:10 -04:00
|
|
|
"name": "@keycloak/keycloak-admin-ui",
|
|
|
|
|
"version": "999.0.0-SNAPSHOT",
|
2023-11-28 07:26:14 -05:00
|
|
|
"type": "module",
|
2024-07-05 12:48:10 -04:00
|
|
|
"main": "lib/keycloak-admin-ui.js",
|
|
|
|
|
"types": "./lib/keycloak-admin-ui.d.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"import": "./lib/keycloak-admin-ui.js",
|
|
|
|
|
"types": "./lib/keycloak-admin-ui.d.ts"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"lib"
|
|
|
|
|
],
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public"
|
|
|
|
|
},
|
2022-08-25 05:03:07 -04:00
|
|
|
"scripts": {
|
2022-09-14 08:42:19 -04:00
|
|
|
"dev": "wireit",
|
|
|
|
|
"build": "wireit",
|
2024-12-04 09:58:14 -05:00
|
|
|
"build-lib": "wireit",
|
2022-09-14 08:42:19 -04:00
|
|
|
"preview": "wireit",
|
|
|
|
|
"lint": "wireit",
|
|
|
|
|
"test": "wireit",
|
2025-07-28 10:56:14 -04:00
|
|
|
"test:integration": "wireit"
|
2022-08-25 05:03:07 -04:00
|
|
|
},
|
2022-09-14 08:42:19 -04:00
|
|
|
"wireit": {
|
|
|
|
|
"dev": {
|
|
|
|
|
"command": "vite --host",
|
|
|
|
|
"dependencies": [
|
2023-03-02 07:31:21 -05:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-08 09:01:11 -05:00
|
|
|
"../../libs/keycloak-admin-client:build"
|
2022-09-14 08:42:19 -04:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"preview": {
|
|
|
|
|
"command": "vite preview",
|
|
|
|
|
"dependencies": [
|
2023-03-02 07:31:21 -05:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-08 09:01:11 -05:00
|
|
|
"../../libs/keycloak-admin-client:build"
|
2022-09-14 08:42:19 -04:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"build": {
|
|
|
|
|
"command": "vite build",
|
|
|
|
|
"dependencies": [
|
2023-03-02 07:31:21 -05:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-08 09:01:11 -05:00
|
|
|
"../../libs/keycloak-admin-client:build"
|
2024-12-04 12:44:08 -05:00
|
|
|
],
|
|
|
|
|
"files": [
|
|
|
|
|
"public",
|
|
|
|
|
"src",
|
|
|
|
|
"tsconfig.json",
|
|
|
|
|
"vite.config.ts"
|
|
|
|
|
],
|
|
|
|
|
"output": [
|
|
|
|
|
"target/classes/theme/keycloak.v2/admin/resources"
|
2022-09-14 08:42:19 -04:00
|
|
|
]
|
|
|
|
|
},
|
2024-12-04 09:58:14 -05:00
|
|
|
"build-lib": {
|
2025-03-24 07:50:05 -04:00
|
|
|
"command": "cross-env LIB=true vite build",
|
2024-12-04 09:58:14 -05:00
|
|
|
"dependencies": [
|
|
|
|
|
"../../libs/ui-shared:build",
|
|
|
|
|
"../../libs/keycloak-admin-client:build"
|
|
|
|
|
]
|
|
|
|
|
},
|
2022-09-14 08:42:19 -04:00
|
|
|
"lint": {
|
2024-04-09 07:35:51 -04:00
|
|
|
"command": "eslint .",
|
2022-09-14 08:42:19 -04:00
|
|
|
"dependencies": [
|
2023-03-02 07:31:21 -05:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-08 09:01:11 -05:00
|
|
|
"../../libs/keycloak-admin-client:build"
|
2022-09-14 08:42:19 -04:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"test": {
|
|
|
|
|
"command": "vitest",
|
|
|
|
|
"dependencies": [
|
2023-03-02 07:31:21 -05:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-08 09:01:11 -05:00
|
|
|
"../../libs/keycloak-admin-client:build"
|
|
|
|
|
]
|
2025-07-28 10:56:14 -04:00
|
|
|
},
|
|
|
|
|
"test:integration": {
|
|
|
|
|
"command": "playwright test",
|
|
|
|
|
"dependencies": [
|
|
|
|
|
"../../libs/keycloak-admin-client:build"
|
|
|
|
|
]
|
2022-09-14 08:42:19 -04:00
|
|
|
}
|
|
|
|
|
},
|
2022-08-25 05:03:07 -04:00
|
|
|
"dependencies": {
|
2026-01-05 10:15:40 -05:00
|
|
|
"@dagrejs/dagre": "^1.1.8",
|
2023-05-05 12:03:24 -04:00
|
|
|
"@keycloak/keycloak-admin-client": "workspace:*",
|
2024-04-24 10:36:20 -04:00
|
|
|
"@keycloak/keycloak-ui-shared": "workspace:*",
|
2024-11-29 07:48:28 -05:00
|
|
|
"@patternfly/patternfly": "^5.4.2",
|
2025-02-25 04:12:49 -05:00
|
|
|
"@patternfly/react-core": "^5.4.14",
|
2024-10-29 07:03:04 -04:00
|
|
|
"@patternfly/react-icons": "^5.4.2",
|
2024-10-25 11:19:07 -04:00
|
|
|
"@patternfly/react-styles": "^5.4.1",
|
2025-02-25 04:12:00 -05:00
|
|
|
"@patternfly/react-table": "^5.4.16",
|
2025-05-13 08:33:12 -04:00
|
|
|
"@uiw/react-textarea-code-editor": "^3.1.1",
|
2023-03-22 12:14:53 -04:00
|
|
|
"admin-ui": "file:",
|
2022-08-25 05:03:07 -04:00
|
|
|
"file-saver": "^2.0.5",
|
2023-09-20 04:10:58 -04:00
|
|
|
"flat": "^6.0.1",
|
2026-01-05 10:15:40 -05:00
|
|
|
"i18next": "^25.7.3",
|
2026-01-12 14:32:10 -05:00
|
|
|
"i18next-fetch-backend": "^7.0.0",
|
2024-12-04 14:36:42 -05:00
|
|
|
"jszip": "^3.10.1",
|
2026-01-05 10:15:40 -05:00
|
|
|
"keycloak-js": "^26.2.2",
|
2026-01-29 15:33:00 -05:00
|
|
|
"lodash-es": "^4.17.23",
|
2026-01-05 10:15:40 -05:00
|
|
|
"p-debounce": "^5.1.0",
|
2024-05-08 09:02:45 -04:00
|
|
|
"react": "^18.3.1",
|
|
|
|
|
"react-dom": "^18.3.1",
|
2026-01-05 10:15:40 -05:00
|
|
|
"react-hook-form": "^7.70.0",
|
|
|
|
|
"react-i18next": "^16.5.1",
|
|
|
|
|
"react-router-dom": "^6.30.2",
|
2024-06-21 03:17:39 -04:00
|
|
|
"reactflow": "^11.11.4",
|
2025-11-12 08:13:00 -05:00
|
|
|
"use-react-router-breadcrumbs": "^4.0.1",
|
2026-01-05 10:15:40 -05:00
|
|
|
"yaml": "^2.8.2"
|
2022-08-25 05:03:07 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-01-05 10:15:40 -05:00
|
|
|
"@axe-core/playwright": "^4.11.0",
|
|
|
|
|
"@playwright/test": "^1.57.0",
|
2025-08-06 08:05:16 -04:00
|
|
|
"@testing-library/dom": "^10.4.1",
|
2025-10-02 02:20:05 -04:00
|
|
|
"@testing-library/jest-dom": "^6.9.1",
|
2026-01-05 10:15:40 -05:00
|
|
|
"@testing-library/react": "^16.3.1",
|
2025-07-01 14:10:43 -04:00
|
|
|
"@types/dagre": "^0.7.53",
|
2023-11-14 08:14:13 -05:00
|
|
|
"@types/file-saver": "^2.0.7",
|
2023-11-22 03:49:24 -05:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
2025-02-13 06:32:44 -05:00
|
|
|
"@types/react": "^18.3.18",
|
|
|
|
|
"@types/react-dom": "^18.3.5",
|
2026-01-05 10:15:40 -05:00
|
|
|
"@vitejs/plugin-react-swc": "^4.2.2",
|
2025-09-29 22:21:20 -04:00
|
|
|
"cross-env": "^10.1.0",
|
2026-01-05 10:15:40 -05:00
|
|
|
"jsdom": "^27.4.0",
|
2025-10-22 16:08:36 -04:00
|
|
|
"lightningcss": "^1.30.2",
|
2026-01-05 10:15:40 -05:00
|
|
|
"properties-file": "^3.6.3",
|
2023-12-11 04:05:12 -05:00
|
|
|
"ts-node": "^10.9.2",
|
2025-09-08 20:10:26 -04:00
|
|
|
"uuid": "^13.0.0",
|
2026-01-05 10:15:40 -05:00
|
|
|
"vite": "^7.3.0",
|
|
|
|
|
"vite-plugin-checker": "^0.12.0",
|
2025-05-19 16:16:35 -04:00
|
|
|
"vite-plugin-dts": "^4.5.4",
|
2026-01-12 14:34:12 -05:00
|
|
|
"vitest": "^4.0.16"
|
2025-10-15 08:41:59 -04:00
|
|
|
},
|
|
|
|
|
"author": {
|
|
|
|
|
"name": "Red Hat, Inc.",
|
|
|
|
|
"url": "https://www.keycloak.org/"
|
|
|
|
|
},
|
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/keycloak/keycloak.git",
|
|
|
|
|
"directory": "js/apps/admin-ui"
|
|
|
|
|
},
|
|
|
|
|
"homepage": "https://www.keycloak.org/"
|
2022-08-25 05:03:07 -04:00
|
|
|
}
|