@kwik-id/sdk-react 0.1.0-alpha.7 → 0.1.0-alpha.8

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -3
  2. package/package.json +45 -45
package/dist/index.js CHANGED
@@ -24867,7 +24867,7 @@ function w6() {
24867
24867
  }
24868
24868
  var k6 = w6();
24869
24869
  const T6 = {
24870
- baseUrl: "https://api.identity.kwiknkap.com",
24870
+ baseUrl: "https://api.identity.staging.kwiknkap.com",
24871
24871
  timeout: 3e4,
24872
24872
  debug: !1
24873
24873
  };
@@ -26047,7 +26047,10 @@ class L6 {
26047
26047
  if (typeof window < "u" && window.FaceMesh)
26048
26048
  return window;
26049
26049
  try {
26050
- return await import("@mediapipe/face_mesh");
26050
+ return await import(
26051
+ /* webpackIgnore: true */
26052
+ "@mediapipe/face_mesh"
26053
+ );
26051
26054
  } catch {
26052
26055
  return new Promise((r, f) => {
26053
26056
  const d = document.createElement("script");
@@ -27624,7 +27627,7 @@ const N4 = _b(void 0), bg = () => {
27624
27627
  config: c,
27625
27628
  children: r,
27626
27629
  clientSecret: f,
27627
- baseUrl: d = "https://api.identity.kwiknkap.com"
27630
+ baseUrl: d = "https://api.identity.staging.kwiknkap.com"
27628
27631
  }) => {
27629
27632
  const p = Vt(null), [y, b] = Ke(!1), [S, x] = Ke(void 0), [w, C] = Ke(void 0), [M, A] = Ke(null), [N, z] = Ke(null), [B, j] = Ke(null), [H, Y] = Ke(null);
27630
27633
  Bt(() => {
package/package.json CHANGED
@@ -1,47 +1,47 @@
1
1
  {
2
- "name": "@kwik-id/sdk-react",
3
- "version": "0.1.0-alpha.7",
4
- "type": "module",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.js",
7
- "types": "./dist/index.d.ts",
8
- "exports": {
9
- "./package.json": "./package.json",
10
- ".": {
11
- "types": "./dist/index.d.ts",
12
- "import": "./dist/index.js",
13
- "default": "./dist/index.js"
2
+ "name": "@kwik-id/sdk-react",
3
+ "version": "0.1.0-alpha.8",
4
+ "type": "module",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ "./package.json": "./package.json",
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "default": "./dist/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "!**/*.tsbuildinfo"
19
+ ],
20
+ "scripts": {
21
+ "build": "vite build",
22
+ "build:staging": "KWIK_API_URL=https://api.identity.staging.kwiknkap.com vite build",
23
+ "publish:latest": "npm run build && npm publish --access public",
24
+ "publish:alpha": "npm run build:staging && npm publish --tag alpha --access public"
25
+ },
26
+ "nx": {
27
+ "name": "sdk-react"
28
+ },
29
+ "peerDependencies": {
30
+ "framer-motion": ">=10.0.0",
31
+ "lottie-react": ">=2.4.0",
32
+ "lucide-react": ">=0.300.0",
33
+ "react": ">=18.0.0",
34
+ "react-dom": ">=18.0.0"
35
+ },
36
+ "dependencies": {
37
+ "compressorjs": "^1.2.1",
38
+ "qrcode": "^1.5.4"
39
+ },
40
+ "devDependencies": {
41
+ "@kwik-id/sdk-core": "workspace:*",
42
+ "@kwik-id/shared-ui": "workspace:*",
43
+ "@kwik-id/types": "workspace:*",
44
+ "@kwik-id/utils": "workspace:*",
45
+ "@types/qrcode": "^1.5.6"
14
46
  }
15
- },
16
- "files": [
17
- "dist",
18
- "!**/*.tsbuildinfo"
19
- ],
20
- "nx": {
21
- "name": "sdk-react"
22
- },
23
- "peerDependencies": {
24
- "framer-motion": ">=10.0.0",
25
- "lottie-react": ">=2.4.0",
26
- "lucide-react": ">=0.300.0",
27
- "react": ">=18.0.0",
28
- "react-dom": ">=18.0.0"
29
- },
30
- "dependencies": {
31
- "compressorjs": "^1.2.1",
32
- "qrcode": "^1.5.4"
33
- },
34
- "devDependencies": {
35
- "@types/qrcode": "^1.5.6",
36
- "@kwik-id/shared-ui": "0.0.1",
37
- "@kwik-id/types": "0.0.1",
38
- "@kwik-id/sdk-core": "0.0.1",
39
- "@kwik-id/utils": "0.0.1"
40
- },
41
- "scripts": {
42
- "build": "vite build",
43
- "build:staging": "KWIK_API_URL=https://api.identity.staging.kwiknkap.com vite build",
44
- "publish:latest": "npm run build && npm publish --access public",
45
- "publish:alpha": "npm run build:staging && npm publish --tag alpha --access public"
46
- }
47
- }
47
+ }