mirror of
https://github.com/keycloak/keycloak.git
synced 2026-05-28 04:13:22 -04:00
* removed postinstall script fixes: #47904 Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * generate bindings when running the tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> --------- Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
87 lines
2.2 KiB
JSON
87 lines
2.2 KiB
JSON
{
|
|
"name": "@keycloak/keycloak-admin-client",
|
|
"version": "999.0.0-SNAPSHOT",
|
|
"description": "A client to interact with Keycloak's Administration API",
|
|
"type": "module",
|
|
"main": "lib/index.js",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"types": "lib/index.d.ts",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "wireit",
|
|
"lint": "wireit",
|
|
"test": "wireit",
|
|
"generate:openapi": "wireit",
|
|
"prepublishOnly": "pnpm build"
|
|
},
|
|
"wireit": {
|
|
"build": {
|
|
"command": "tsc --pretty",
|
|
"dependencies": [
|
|
"generate:openapi"
|
|
],
|
|
"files": [
|
|
"src",
|
|
"tsconfig.json"
|
|
],
|
|
"output": [
|
|
"lib"
|
|
]
|
|
},
|
|
"generate:openapi": {
|
|
"command": "kiota generate -l typescript -d openapi.yaml -c AdminClient -n ApiSdk -o ./src/generated --clean-output",
|
|
"files": [
|
|
"openapi.yaml"
|
|
],
|
|
"output": [
|
|
"src/generated"
|
|
]
|
|
},
|
|
"lint": {
|
|
"command": "eslint ."
|
|
},
|
|
"test": {
|
|
"command": "TS_NODE_PROJECT=tsconfig.test.json mocha --recursive \"test/**/*.spec.ts\" --timeout 10000"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@microsoft/kiota-abstractions": "^1.0.0-preview.86",
|
|
"@microsoft/kiota-http-fetchlibrary": "^1.0.0-preview.80",
|
|
"@microsoft/kiota-serialization-form": "^1.0.0-preview.74",
|
|
"@microsoft/kiota-serialization-json": "^1.0.0-preview.86",
|
|
"@microsoft/kiota-serialization-multipart": "^1.0.0-preview.67",
|
|
"@microsoft/kiota-serialization-text": "^1.0.0-preview.79",
|
|
"camelize-ts": "^3.0.0",
|
|
"url-template": "^3.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@faker-js/faker": "^10.2.0",
|
|
"@kiota-community/kiota-gen": "^1.0.2",
|
|
"@types/chai": "^5.2.2",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node": "^25.0.3",
|
|
"chai": "^6.2.2",
|
|
"lodash-es": "^4.18.1",
|
|
"mocha": "^11.7.5",
|
|
"ts-node": "^10.9.2"
|
|
},
|
|
"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/libs/keycloak-admin-client"
|
|
},
|
|
"homepage": "https://www.keycloak.org/"
|
|
}
|