UNPKG

@josempgon/vue-keycloak

Version:

Keycloak plugin for Vue 3 with Composition API

73 lines (72 loc) 2.07 kB
{ "name": "@josempgon/vue-keycloak", "version": "3.3.1", "description": "Keycloak plugin for Vue 3 with Composition API", "author": { "name": "Gery Hirschfeld", "email": "gerhard.hirschfeld@baloise.ch", "url": "https://github.com/hirsch88" }, "contributors": [ "José Miguel Gonçalves <jose.goncalves@inov.pt>" ], "homepage": "https://github.com/JoseGoncalves/vue-keycloak", "repository": { "type": "git", "url": "git+ssh://git@github.com/JoseGoncalves/vue-keycloak.git" }, "scripts": { "test": "jest", "test:watch": "jest --watchAll", "build": "npm run build:clean && npm run build:compile && npm run build:bundle", "build:clean": "rimraf dist && rimraf dist-transpiled", "build:compile": "tsc -p .", "build:bundle": "rollup --config rollup.config.js", "clean": "npm run build:clean && rimraf node_modules", "lint": "eslint .", "lint:fix": "npm run lint -- --fix", "format": "prettier --write .", "format:check": "prettier --check .", "release": "semantic-release --no-ci" }, "type": "module", "main": "./dist/index.cjs", "types": "./dist/types/index.d.ts", "exports": { "require": "./dist/index.cjs", "import": "./dist/index.mjs", "types": "./dist/types/index.d.ts" }, "files": [ "dist/" ], "keywords": [ "vue", "keycloak", "composition-api" ], "license": "Apache-2.0", "peerDependencies": { "keycloak-js": "18 - 26", "vue": "^3.4.0" }, "devDependencies": { "@eslint/js": "^9.29.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@types/jest": "^29.5.14", "conventional-changelog-conventionalcommits": "^9.0.0", "eslint": "^9.29.0", "jest": "^30.0.0", "jest-environment-jsdom": "^30.0.0", "keycloak-js": "^26.2.0", "prettier": "^3.5.3", "rimraf": "^6.0.1", "rollup": "^4.43.0", "semantic-release": "^24.2.5", "ts-jest": "^29.4.0", "typescript": "~5.8.3", "typescript-eslint": "^8.34.1", "vue": "^3.5.16" } }