-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
38 lines (38 loc) · 1008 Bytes
/
package.json
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
32
33
34
35
36
37
38
{
"name": "@s3pweb/keycloak-admin-client-cjs",
"version": "26.1.2",
"description": "Keycloak Admin Client compiled in CommonJS.",
"keywords": [
"keycloak-admin-client",
"CommonJS",
"NestJS"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"compile": "tsc --noEmit",
"build": "esbuild dist/index.d.ts --platform=node --bundle --format=cjs --outfile=dist/index.js",
"prepublish": "npm run compile && npm run build",
"prepare": "husky",
"release": "commit-and-tag-version -s"
},
"repository": {
"type": "git",
"url": "https://github.com//s3pweb/keycloak-admin-client-cjs.git"
},
"author": "s3pweb",
"license": "MIT",
"dependencies": {
"@keycloak/keycloak-admin-client": "26.1.2"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"commit-and-tag-version": "^12.5.0",
"esbuild": "0.25.0",
"husky": "^9.1.7"
},
"files": [
"dist/**/*"
]
}