forked from s3pweb/keycloak-admin-client-cjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 750 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "@lensapp/keycloak-admin-client-cjs",
"version": "23.0.7",
"description": "Keycloak Admin Client compiled in CommonJS.",
"keywords": [
"keycloak-admin-client",
"CommonJS",
"NestJS"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "esbuild dist/index.d.ts --platform=node --bundle --format=cjs --outfile=dist/index.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/lensapp/keycloak-admin-client-cjs.git"
},
"author": "Mirantis Inc",
"license": "MIT",
"dependencies": {
"@keycloak/keycloak-admin-client": "23.0.7"
},
"devDependencies": {
"esbuild": "^0.17.3"
},
"files": [
"dist/**/*"
]
}