@useparagon/connect 2.3.2-experimental.1 → 2.3.2-experimental.20500.1

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.
@@ -0,0 +1,63 @@
1
+ /*!
2
+ * The buffer module from node.js, for the browser.
3
+ *
4
+ * @author Feross Aboukhadijeh <https://feross.org>
5
+ * @license MIT
6
+ */
7
+
8
+ /*!
9
+ * is-plain-object <https://github.com/jonschlinkert/is-plain-object>
10
+ *
11
+ * Copyright (c) 2014-2017, Jon Schlinkert.
12
+ * Released under the MIT License.
13
+ */
14
+
15
+ /*!
16
+ * isobject <https://github.com/jonschlinkert/isobject>
17
+ *
18
+ * Copyright (c) 2014-2017, Jon Schlinkert.
19
+ * Released under the MIT License.
20
+ */
21
+
22
+ /*!
23
+ * shallow-clone <https://github.com/jonschlinkert/shallow-clone>
24
+ *
25
+ * Copyright (c) 2015-present, Jon Schlinkert.
26
+ * Released under the MIT License.
27
+ */
28
+
29
+ /*! *****************************************************************************
30
+ Copyright (c) Microsoft Corporation.
31
+
32
+ Permission to use, copy, modify, and/or distribute this software for any
33
+ purpose with or without fee is hereby granted.
34
+
35
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
36
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
37
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
38
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
39
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
40
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
41
+ PERFORMANCE OF THIS SOFTWARE.
42
+ ***************************************************************************** */
43
+
44
+ /*! *****************************************************************************
45
+ Copyright (c) Microsoft Corporation.
46
+
47
+ Permission to use, copy, modify, and/or distribute this software for any
48
+ purpose with or without fee is hereby granted.
49
+
50
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
51
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
52
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
53
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
54
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
55
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
56
+ PERFORMANCE OF THIS SOFTWARE.
57
+ ***************************************************************************** */
58
+
59
+ /*! @azure/msal-browser v2.19.0 2021-11-02 */
60
+
61
+ /*! @azure/msal-common v5.1.0 2021-11-02 */
62
+
63
+ /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
package/package.json CHANGED
@@ -1,18 +1,19 @@
1
1
  {
2
2
  "name": "@useparagon/connect",
3
- "version": "2.3.2-experimental.1",
3
+ "version": "2.3.2-experimental.20500.1",
4
4
  "description": "Embed integrations into your app with the Paragon SDK",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
7
7
  "exports": {
8
8
  ".": "./dist/src/index.js",
9
- "./ConnectSDK": "./dist/src/ConnectSDK.js"
9
+ "./ConnectSDK": "./dist/src/ConnectSDK.js",
10
+ "./with-third-party-scripts": "./dist/src/with-third-party-scripts.js"
10
11
  },
11
12
  "scripts": {
12
13
  "start:dev": "NODE_ENV=development webpack serve",
13
- "build:prod": "yarn typecheck && yarn clean && webpack --config webpack.config.js",
14
+ "build:prod": "yarn typecheck && yarn clean && NODE_ENV=production webpack --config webpack.config.js",
14
15
  "build:watch": "yarn build --watch",
15
- "build": "yarn typecheck && yarn clean && webpack --config webpack.config.js",
16
+ "build": "yarn typecheck && yarn clean && NODE_ENV=production webpack --config webpack.config.js",
16
17
  "ci:compile": "whiskers",
17
18
  "clean:server": "rimraf ./dist/src",
18
19
  "clean": "rimraf coverage dist",
@@ -33,12 +34,9 @@
33
34
  "clone-deep": "^4.0.1",
34
35
  "hash.js": "^1.1.7",
35
36
  "jwt-decode": "^3.1.2",
36
- "lodash": "^4.17.23",
37
+ "react": "^17.0.2",
37
38
  "tslib": "2.3.1"
38
39
  },
39
- "peerDependencies": {
40
- "react": "^17 || ^18 || ^19"
41
- },
42
40
  "devDependencies": {
43
41
  "@babel/core": "^7.12.3",
44
42
  "@babel/preset-env": "^7.12.1",
@@ -49,7 +47,6 @@
49
47
  "@types/gapi": "^0.0.47",
50
48
  "@types/google.picker": "^0.0.42",
51
49
  "@types/jest": "^29.5.1",
52
- "@types/lodash": "^4.17.24",
53
50
  "@types/node": "^18.13.0",
54
51
  "@types/react": "^17.0.11",
55
52
  "@types/react-dom": "^17.0.8",
@@ -81,7 +78,6 @@
81
78
  "pkg": "^5.8.1",
82
79
  "prettier": "^2.2.1",
83
80
  "process": "^0.11.10",
84
- "react": "^17.0.2",
85
81
  "react-dom": "^17.0.2",
86
82
  "rimraf": "^3.0.2",
87
83
  "stream-browserify": "^3.0.0",
@@ -0,0 +1,4 @@
1
+ declare module '*?inline-text' {
2
+ const content: string;
3
+ export default content;
4
+ }