-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 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
{
"name": "@josempgon/vue-keycloak",
"version": "3.1.0",
"description": "Keycloak plugin for Vue 3 with Composition API",
"author": {
"name": "Gery Hirschfeld",
"email": "[email protected]",
"url": "https://github.com/hirsch88"
},
"contributors": [
"José Miguel Gonçalves <[email protected]>"
],
"homepage": "https://github.com/JoseGoncalves/vue-keycloak",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/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.18.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"keycloak-js": "^26.0.7",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"rollup": "^4.30.1",
"semantic-release": "^22.0.12",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vue": "^3.5.13"
}
}