@trust-proto/auth-react 0.1.0

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,81 @@
1
+ {
2
+ "name": "@trust-proto/auth-react",
3
+ "version": "0.1.0",
4
+ "description": "Liberion Auth Frontend SDK - React authentication widget",
5
+ "main": "build/index.js",
6
+ "files": [
7
+ "build",
8
+ "README.md",
9
+ "LICENSE"
10
+ ],
11
+ "author": "Liberion Inc.",
12
+ "license": "MIT",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/liberion-official/auth-sdk-ts.git",
16
+ "directory": "packages/frontend"
17
+ },
18
+ "homepage": "https://github.com/liberion-official/auth-sdk-ts/tree/main/packages/frontend#readme",
19
+ "bugs": {
20
+ "url": "https://github.com/liberion-official/auth-sdk-ts/issues"
21
+ },
22
+ "keywords": [
23
+ "liberion",
24
+ "auth",
25
+ "authentication",
26
+ "react",
27
+ "widget",
28
+ "qr-code"
29
+ ],
30
+ "scripts": {
31
+ "build": "webpack --mode production --env target=lib",
32
+ "build:lib": "webpack --mode production --env target=lib",
33
+ "build:pack": "webpack --mode production --config webpack-pack.config.js",
34
+ "dev": "webpack serve --mode development --config webpack.config.js",
35
+ "lint": "eslint ./src --ext .js,.jsx",
36
+ "lint:fix": "eslint --fix ./src --ext .js,.jsx",
37
+ "clean": "rm -rf build dist"
38
+ },
39
+ "dependencies": {
40
+ "@msgpack/msgpack": "^3.1.2",
41
+ "eruda": "^3.4.3",
42
+ "i18next": "^25.6.0",
43
+ "qr-code-styling": "^1.9.2",
44
+ "react-i18next": "^16.2.3",
45
+ "react-router": "^7.9.5",
46
+ "styled-components": "^6.1.19"
47
+ },
48
+ "peerDependencies": {
49
+ "react": ">=18.0.0",
50
+ "react-dom": ">=18.0.0"
51
+ },
52
+ "devDependencies": {
53
+ "@babel/core": "^7.28.5",
54
+ "@babel/eslint-parser": "^7.28.5",
55
+ "@babel/preset-env": "^7.28.5",
56
+ "@babel/preset-react": "^7.28.5",
57
+ "@eslint/compat": "^1.4.1",
58
+ "@eslint/eslintrc": "^3.3.1",
59
+ "@eslint/js": "^9.39.0",
60
+ "@svgr/webpack": "^8.1.0",
61
+ "babel-loader": "^10.0.0",
62
+ "clean-webpack-plugin": "^4.0.0",
63
+ "copy-webpack-plugin": "^13.0.1",
64
+ "eslint": "^9.39.0",
65
+ "eslint-plugin-import": "^2.32.0",
66
+ "eslint-plugin-jsx-a11y": "^6.10.2",
67
+ "eslint-plugin-react": "^7.37.5",
68
+ "eslint-plugin-react-hooks": "^7.0.1",
69
+ "globals": "^16.5.0",
70
+ "html-webpack-plugin": "^5.6.4",
71
+ "react": "^19.2.0",
72
+ "react-dom": "^19.2.0",
73
+ "terser-webpack-plugin": "^5.3.10",
74
+ "webpack": "^5.102.1",
75
+ "webpack-cli": "^6.0.1",
76
+ "webpack-dev-server": "^5.2.2"
77
+ },
78
+ "publishConfig": {
79
+ "access": "public"
80
+ }
81
+ }