-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.18 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@josempgon/vue-keycloak",
"version": "3.1.0",
"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 . --ext .js,.cjs,.mjs,.ts",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier \"**/*.{js,cjs,mjs,ts}\"",
"format": "npm run prettier -- --write",
"format:check": "npm run 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": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"keycloak-js": "^26.0.5",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"rollup": "^3.29.4",
"semantic-release": "^22.0.12",
"ts-jest": "^29.2.5",
"typescript": "~5.5.4",
"vue": "^3.5.12"
}
}