-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·65 lines (65 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·65 lines (65 loc) · 1.87 KB
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
{
"name": "@keycloakify/login-ui",
"version": "250004.7.4",
"description": "React implementation of Keycloak Login v2 for Keycloakify",
"repository": {
"type": "git",
"url": "git://github.com/keycloakify/login-ui.git"
},
"scripts": {
"prepare": "tsx scripts/prepare/main.ts",
"build": "tsx scripts/build.ts",
"_format": "prettier '**/*.{ts,tsx,json,md}'",
"format": "npm run _format -- --write",
"format:check": "npm run _format -- --list-different"
},
"lint-staged": {
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
},
"author": "u/garronej",
"license": "MIT",
"keywords": [],
"homepage": "https://github.com/keycloakify/login",
"peerDependencies": {
"tsafe": "^1.8.5"
},
"devDependencies": {
"@types/node": "^22.15.18",
"@types/properties-parser": "^0.3.3",
"@types/react": "^19.1.4",
"evt": "^2.5.9",
"husky": "^4.3.8",
"lint-staged": "^11.1.1",
"make-fetch-happen": "^11.0.3",
"yauzl": "^2.10.0",
"prettier": "^3.3.2",
"properties-parser": "^0.6.0",
"react": "^18.3.1",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"zod": "^3.24.4",
"keycloakify": "^11.8.35",
"tsafe": "^1.8.5",
"webpack": "5.93.0",
"webpack-cli": "5.1.4",
"dompurify": "^3.1.6",
"@types/dompurify": "^2.0.0",
"babel-loader": "9.1.3",
"@babel/core": "^7.24.5",
"@babel/generator": "^7.24.5",
"@babel/parser": "^7.24.5",
"@babel/preset-env": "7.24.8",
"@babel/types": "^7.24.5",
"@types/babel__generator": "^7.6.4"
},
"publishConfig": {
"access": "public"
}
}