@kong-ui-public/swagger-ui-web-component 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.
@@ -0,0 +1,93 @@
1
+ /*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */
6
+
7
+ /*!
8
+ Copyright (c) 2018 Jed Watson.
9
+ Licensed under the MIT License (MIT), see
10
+ http://jedwatson.github.io/classnames
11
+ */
12
+
13
+ /*!
14
+ * cookie
15
+ * Copyright(c) 2012-2014 Roman Shtylman
16
+ * Copyright(c) 2015 Douglas Christopher Wilson
17
+ * MIT Licensed
18
+ */
19
+
20
+ /*!
21
+ * https://github.com/Starcounter-Jack/JSON-Patch
22
+ * (c) 2017-2021 Joachim Wester
23
+ * MIT license
24
+ */
25
+
26
+ /*!
27
+ * is-plain-object <https://github.com/jonschlinkert/is-plain-object>
28
+ *
29
+ * Copyright (c) 2014-2017, Jon Schlinkert.
30
+ * Released under the MIT License.
31
+ */
32
+
33
+ /*!
34
+ * repeat-string <https://github.com/jonschlinkert/repeat-string>
35
+ *
36
+ * Copyright (c) 2014-2015, Jon Schlinkert.
37
+ * Licensed under the MIT License.
38
+ */
39
+
40
+ /*! @license DOMPurify 2.3.10 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.3.10/LICENSE */
41
+
42
+ /*! https://mths.be/punycode v1.3.2 by @mathias */
43
+
44
+ /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
45
+
46
+ /*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT */
47
+
48
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
49
+
50
+ /** @license React v0.20.2
51
+ * scheduler.production.min.js
52
+ *
53
+ * Copyright (c) Facebook, Inc. and its affiliates.
54
+ *
55
+ * This source code is licensed under the MIT license found in the
56
+ * LICENSE file in the root directory of this source tree.
57
+ */
58
+
59
+ /** @license React v16.13.1
60
+ * react-is.production.min.js
61
+ *
62
+ * Copyright (c) Facebook, Inc. and its affiliates.
63
+ *
64
+ * This source code is licensed under the MIT license found in the
65
+ * LICENSE file in the root directory of this source tree.
66
+ */
67
+
68
+ /** @license React v17.0.2
69
+ * react-dom.production.min.js
70
+ *
71
+ * Copyright (c) Facebook, Inc. and its affiliates.
72
+ *
73
+ * This source code is licensed under the MIT license found in the
74
+ * LICENSE file in the root directory of this source tree.
75
+ */
76
+
77
+ /** @license React v17.0.2
78
+ * react-is.production.min.js
79
+ *
80
+ * Copyright (c) Facebook, Inc. and its affiliates.
81
+ *
82
+ * This source code is licensed under the MIT license found in the
83
+ * LICENSE file in the root directory of this source tree.
84
+ */
85
+
86
+ /** @license React v17.0.2
87
+ * react.production.min.js
88
+ *
89
+ * Copyright (c) Facebook, Inc. and its affiliates.
90
+ *
91
+ * This source code is licensed under the MIT license found in the
92
+ * LICENSE file in the root directory of this source tree.
93
+ */
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@kong-ui-public/swagger-ui-web-component",
3
+ "version": "0.1.0",
4
+ "main": "dist/main.js",
5
+ "files": [
6
+ "dist"
7
+ ],
8
+ "publishConfig": {
9
+ "access": "public"
10
+ },
11
+ "dependencies": {
12
+ "@kong/swagger-ui-kong-theme-universal": "^4.0.1",
13
+ "react": "17.0.2",
14
+ "react-dom": "17.0.2",
15
+ "swagger-ui": "^4.15.5"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/Kong/public-ui-components.git",
20
+ "directory": "packages/portal/swagger-ui-web-component"
21
+ },
22
+ "homepage": "https://github.com/Kong/public-ui-components/tree/main/packages/portal/swagger-ui-web-component",
23
+ "bugs": {
24
+ "url": "https://github.com/Kong/public-ui-components/issues"
25
+ },
26
+ "author": "Kong, Inc.",
27
+ "license": "Apache-2.0",
28
+ "volta": {
29
+ "extends": "../../../package.json"
30
+ },
31
+ "devDependencies": {
32
+ "css-loader": "^6.7.2",
33
+ "raw-loader": "^4.0.2",
34
+ "style-loader": "^3.3.1",
35
+ "terser-webpack-plugin": "^5.3.6",
36
+ "webpack": "^5.75.0",
37
+ "webpack-bundle-analyzer": "^4.7.0",
38
+ "webpack-cli": "^5.0.0",
39
+ "webpack-dev-server": "^4.11.1"
40
+ },
41
+ "scripts": {
42
+ "start": "webpack serve",
43
+ "build": "webpack --mode production"
44
+ }
45
+ }