forked from teamhanko/hanko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 2.86 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@teamhanko/hanko-elements",
"version": "0.8.4",
"private": false,
"publishConfig": {
"access": "public"
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"browser": {
".": "./dist/elements.js"
},
"typesVersions": {
"*": {
"elements": [
"dist/Elements.d.ts"
],
"i18n/de": [
"dist/i18n/de.d.ts"
],
"i18n/en": [
"dist/i18n/en.d.ts"
],
"i18n/fr": [
"dist/i18n/fr.d.ts"
],
"i18n/zh": [
"dist/i18n/zh.d.ts"
],
"i18n/all": [
"dist/i18n/all.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/elements.js",
"require": "./dist/elements.js"
},
"./i18n/de": {
"types": "./dist/i18n/de.d.ts",
"import": "./dist/i18n/de.js",
"require": "./dist/i18n/de.js"
},
"./i18n/en": {
"types": "./dist/i18n/en.d.ts",
"import": "./dist/i18n/en.js",
"require": "./dist/i18n/en.js"
},
"./i18n/fr": {
"types": "./dist/i18n/fr.d.ts",
"import": "./dist/i18n/fr.js",
"require": "./dist/i18n/fr.js"
},
"./i18n/zh": {
"types": "./dist/i18n/zh.d.ts",
"import": "./dist/i18n/zh.js",
"require": "./dist/i18n/zh.js"
},
"./i18n/all": {
"types": "./dist/i18n/all.d.ts",
"import": "./dist/i18n/all.js",
"require": "./dist/i18n/all.js"
}
},
"scripts": {
"lint": "eslint 'src/**/*.ts?(x)'",
"format": "pretty-quick --staged",
"build": "npx webpack --mode=production",
"build:dev": "npx webpack --mode=development --config webpack.config.dev.cjs"
},
"description": "The <hanko-auth> element offers a complete user interface that will bring a modern login and registration experience to your users.",
"repository": "github:teamhanko/hanko",
"author": "Hanko GmbH <[email protected]>",
"license": "MIT",
"keywords": [
"hanko",
"passkey",
"webauthn",
"passcode",
"password",
"login",
"register"
],
"homepage": "https://hanko.io",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.62.0",
"css-loader": "^6.7.3",
"eslint": "^8.47.0",
"eslint-config-google": "^0.14.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"sass": "^1.61.0",
"sass-loader": "^13.2.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.2",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@denysvuika/preact-translate": "^0.5.0",
"@teamhanko/hanko-frontend-sdk": "^0.8.4",
"@teamhanko/preact-custom-element": "^4.2.2",
"classnames": "^2.3.2",
"preact": "^10.13.1"
}
}