@monderks/nestjs-keycloak-auth 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -8
  2. package/package.json +11 -9
package/README.md CHANGED
@@ -286,14 +286,6 @@ export const useKeycloak = () => {
286
286
  };
287
287
  ```
288
288
 
289
- ## Contribuir
290
-
291
- 1. Fork el proyecto
292
- 2. Crea una rama para tu feature (`git checkout -b feature/AmazingFeature`)
293
- 3. Commit tus cambios (`git commit -m 'Add some AmazingFeature'`)
294
- 4. Push a la rama (`git push origin feature/AmazingFeature`)
295
- 5. Abre un Pull Request
296
-
297
289
  ## Licencia
298
290
 
299
291
  Este proyecto está bajo la Licencia MIT - ver el archivo [LICENSE](LICENSE) para detalles.
package/package.json CHANGED
@@ -1,9 +1,18 @@
1
1
  {
2
2
  "name": "@monderks/nestjs-keycloak-auth",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Librería para validación de tokens Keycloak en NestJS (frontend controla login)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc",
9
+ "dev": "tsc --watch",
10
+ "test": "jest",
11
+ "lint": "eslint src/**/*.ts",
12
+ "format": "prettier --write src/**/*.ts",
13
+ "prepare": "npm run build",
14
+ "publish": "npm publish --access public"
15
+ },
7
16
  "repository": {
8
17
  "type": "git",
9
18
  "url": "https://github.com/AlejoClifton/nestjs-keycloak-auth.git"
@@ -39,12 +48,5 @@
39
48
  "peerDependencies": {
40
49
  "@nestjs/common": "^11.1.3",
41
50
  "@nestjs/core": "^11.1.3"
42
- },
43
- "scripts": {
44
- "build": "tsc",
45
- "dev": "tsc --watch",
46
- "test": "jest",
47
- "lint": "eslint src/**/*.ts",
48
- "format": "prettier --write src/**/*.ts"
49
51
  }
50
- }
52
+ }