@descope/web-js-sdk 1.3.11 → 1.3.12-alpha.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@descope/web-js-sdk",
3
- "version": "1.3.11",
3
+ "version": "1.3.12-alpha.2",
4
4
  "author": "Descope Team <info@descope.com>",
5
5
  "homepage": "https://github.com/descope/web-js-sdk",
6
6
  "bugs": {
@@ -22,6 +22,13 @@
22
22
  },
23
23
  "type": "module",
24
24
  "description": "Descope JavaScript web SDK",
25
+ "scripts": {
26
+ "start": "npm run generateCerts && npx nx run web-js-sdk:build && npm run build && http-server -S -o ./examples",
27
+ "build": "rimraf dist && rollup -c",
28
+ "test": "jest",
29
+ "lint": "eslint '+(src|test|examples)/**/*.ts'",
30
+ "generateCerts": "test -f ./key.pem && test -f ./cert.pem || openssl req -new -newkey rsa:2048 -days 365 -nodes -x509 -subj '/C=US/ST=California/L=San Francisco/O=Descope/CN=localhost' -keyout ./key.pem -out ./cert.pem"
31
+ },
25
32
  "license": "MIT",
26
33
  "repository": {
27
34
  "type": "git",
@@ -42,16 +49,16 @@
42
49
  "@rollup/plugin-terser": "^0.4.0",
43
50
  "@rollup/plugin-typescript": "^11.0.0",
44
51
  "@types/jest": "^29.0.0",
45
- "@types/node": "18.15.0",
52
+ "@types/node": "18.17.6",
46
53
  "@types/js-cookie": "^3.0.2",
47
54
  "@types/lodash.get": "^4.4.7",
48
55
  "@typescript-eslint/parser": "^5.33.1",
49
- "eslint": "8.45.0",
56
+ "eslint": "8.47.0",
50
57
  "eslint-config-airbnb-typescript": "17.1.0",
51
- "eslint-config-prettier": "8.9.0",
58
+ "eslint-config-prettier": "8.10.0",
52
59
  "eslint-config-standard": "17.1.0",
53
- "eslint-import-resolver-typescript": "3.5.5",
54
- "eslint-plugin-import": "2.28.0",
60
+ "eslint-import-resolver-typescript": "3.6.0",
61
+ "eslint-plugin-import": "2.28.1",
55
62
  "eslint-plugin-jest": "27.2.3",
56
63
  "eslint-plugin-jest-dom": "4.0.3",
57
64
  "eslint-plugin-jest-formatting": "3.1.0",
@@ -80,18 +87,11 @@
80
87
  "typescript": "^4.5.3"
81
88
  },
82
89
  "dependencies": {
90
+ "@descope/core-js-sdk": "1.6.4-alpha.2",
83
91
  "@fingerprintjs/fingerprintjs-pro": "3.8.5",
84
- "js-cookie": "3.0.5",
85
- "@descope/core-js-sdk": "1.6.2"
92
+ "js-cookie": "3.0.5"
86
93
  },
87
94
  "overrides": {
88
95
  "terser": "^5.14.2"
89
- },
90
- "scripts": {
91
- "start": "npm run generateCerts && npx nx run web-js-sdk:build && npm run build && http-server -S -o ./examples",
92
- "build": "rimraf dist && rollup -c",
93
- "test": "jest",
94
- "lint": "eslint '+(src|test|examples)/**/*.ts'",
95
- "generateCerts": "test -f ./key.pem && test -f ./cert.pem || openssl req -new -newkey rsa:2048 -days 365 -nodes -x509 -subj '/C=US/ST=California/L=San Francisco/O=Descope/CN=localhost' -keyout ./key.pem -out ./cert.pem"
96
96
  }
97
- }
97
+ }