keycloak-scim/js/apps/create-keycloak-theme/package.json
Erik Jan de Wit 61726e12c4
added bin to package.json to make it executable (#32052)
Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
2024-08-13 11:29:48 +02:00

23 lines
502 B
JSON

{
"name": "create-keycloak-theme",
"version": "999.0.0-SNAPSHOT",
"description": "Create a new Keycloak ui project based on a template",
"main": "create.js",
"type": "module",
"scripts": {
"start": "node create.js"
},
"bin": {
"create-keycloak-theme": "./create.js"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"mustache": "^4.2.0",
"simple-git": "^3.25.0"
}
}