@hotosm/hanko-auth 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@hotosm/hanko-auth",
3
+ "version": "0.2.5",
4
+ "description": "Web component for HOTOSM SSO authentication with Hanko and OSM integration",
5
+ "type": "module",
6
+ "main": "dist/hanko-auth.umd.js",
7
+ "module": "dist/hanko-auth.esm.js",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/hanko-auth.esm.js",
11
+ "require": "./dist/hanko-auth.umd.js"
12
+ },
13
+ "./dist/*": "./dist/*"
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "src"
18
+ ],
19
+ "scripts": {
20
+ "dev": "vite",
21
+ "build": "vite build",
22
+ "preview": "vite preview"
23
+ },
24
+ "keywords": [
25
+ "hotosm",
26
+ "hanko",
27
+ "auth",
28
+ "sso",
29
+ "openstreetmap",
30
+ "osm",
31
+ "web-component",
32
+ "lit"
33
+ ],
34
+ "author": "HOTOSM <tech@hotosm.org>",
35
+ "license": "AGPL-3.0",
36
+ "homepage": "https://hotosm.github.io/auth-docs",
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/hotosm/login.git",
40
+ "directory": "auth-libs/web-component"
41
+ },
42
+ "bugs": {
43
+ "url": "https://github.com/hotosm/login/issues"
44
+ },
45
+ "dependencies": {
46
+ "@teamhanko/hanko-elements": "^1.0.0",
47
+ "lit": "^3.3.1"
48
+ },
49
+ "peerDependencies": {
50
+ "@awesome.me/webawesome": "^3.0.0-beta.1"
51
+ },
52
+ "devDependencies": {
53
+ "@awesome.me/webawesome": "3.0.0-beta.1",
54
+ "vite": "^5.0.0"
55
+ }
56
+ }