@kapaai/widget 1.36.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,78 @@
1
+ /*!
2
+ * Determine if an object is a Buffer
3
+ *
4
+ * @author Feross Aboukhadijeh <https://feross.org>
5
+ * @license MIT
6
+ */
7
+
8
+ /*! Bundled license information:
9
+
10
+ prismjs/prism.js:
11
+ (**
12
+ * Prism: Lightweight, robust, elegant syntax highlighting
13
+ *
14
+ * @license MIT <https://opensource.org/licenses/MIT>
15
+ * @author Lea Verou <https://lea.verou.me>
16
+ * @namespace
17
+ * @public
18
+ *)
19
+ */
20
+
21
+ /**
22
+ * @license React
23
+ * react-dom.production.min.js
24
+ *
25
+ * Copyright (c) Facebook, Inc. and its affiliates.
26
+ *
27
+ * This source code is licensed under the MIT license found in the
28
+ * LICENSE file in the root directory of this source tree.
29
+ */
30
+
31
+ /**
32
+ * @license React
33
+ * react-is.production.min.js
34
+ *
35
+ * Copyright (c) Facebook, Inc. and its affiliates.
36
+ *
37
+ * This source code is licensed under the MIT license found in the
38
+ * LICENSE file in the root directory of this source tree.
39
+ */
40
+
41
+ /**
42
+ * @license React
43
+ * react-jsx-runtime.production.min.js
44
+ *
45
+ * Copyright (c) Facebook, Inc. and its affiliates.
46
+ *
47
+ * This source code is licensed under the MIT license found in the
48
+ * LICENSE file in the root directory of this source tree.
49
+ */
50
+
51
+ /**
52
+ * @license React
53
+ * react.production.min.js
54
+ *
55
+ * Copyright (c) Facebook, Inc. and its affiliates.
56
+ *
57
+ * This source code is licensed under the MIT license found in the
58
+ * LICENSE file in the root directory of this source tree.
59
+ */
60
+
61
+ /**
62
+ * @license React
63
+ * scheduler.production.min.js
64
+ *
65
+ * Copyright (c) Facebook, Inc. and its affiliates.
66
+ *
67
+ * This source code is licensed under the MIT license found in the
68
+ * LICENSE file in the root directory of this source tree.
69
+ */
70
+
71
+ /** @license React v16.13.1
72
+ * react-is.production.min.js
73
+ *
74
+ * Copyright (c) Facebook, Inc. and its affiliates.
75
+ *
76
+ * This source code is licensed under the MIT license found in the
77
+ * LICENSE file in the root directory of this source tree.
78
+ */
package/package.json ADDED
@@ -0,0 +1,94 @@
1
+ {
2
+ "name": "@kapaai/widget",
3
+ "version": "1.36.0",
4
+ "main": "./dist/index.js",
5
+ "module": "./dist/esm/index.js",
6
+ "types": "./dist/esm/index.d.ts",
7
+ "sideEffects": false,
8
+ "license": "MIT",
9
+ "files": [
10
+ "dist/**"
11
+ ],
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/kapa-ai/kapa-js"
15
+ },
16
+ "exports": {
17
+ ".": {
18
+ "import": "./dist/esm/index.js",
19
+ "require": "./dist/index.js"
20
+ }
21
+ },
22
+ "dependencies": {
23
+ "@kapaai/utils": "*",
24
+ "@kapaai/gc-publisher": "*",
25
+ "@emotion/react": "^11.10.6",
26
+ "@emotion/styled": "^11.10.6",
27
+ "@fingerprintjs/fingerprintjs-pro-react": "^2.6.3",
28
+ "@mantine/core": "^6.0.8",
29
+ "@mantine/form": "^7.1.2",
30
+ "@mantine/hooks": "^6.0.8",
31
+ "@tabler/icons-react": "^2.16.0",
32
+ "chroma-js": "^2.4.2",
33
+ "framer-motion": "^10.12.4",
34
+ "prism-react-renderer": "^2.3.0",
35
+ "prismjs": "^1.29.0",
36
+ "react": "^18.2.0",
37
+ "react-dom": "^18.2.0",
38
+ "react-google-recaptcha": "^2.1.0",
39
+ "react-markdown": "^8.0.7",
40
+ "react-scripts": "5.0.1",
41
+ "remark-gfm": "^3.0.1",
42
+ "ts-loader": "^9.4.2",
43
+ "typescript": "^4.9.5"
44
+ },
45
+ "scripts": {
46
+ "dev": "webpack serve --mode development",
47
+ "build": "webpack --mode production",
48
+ "test": "jest",
49
+ "eject": "react-scripts eject",
50
+ "postpublish": "node scripts/post-publish-gcs.js"
51
+ },
52
+ "eslintConfig": {
53
+ "extends": [
54
+ "react-app",
55
+ "react-app/jest"
56
+ ]
57
+ },
58
+ "browserslist": {
59
+ "production": [
60
+ ">0.2%",
61
+ "not dead",
62
+ "not op_mini all"
63
+ ],
64
+ "development": [
65
+ "last 1 chrome version",
66
+ "last 1 firefox version",
67
+ "last 1 safari version"
68
+ ]
69
+ },
70
+ "devDependencies": {
71
+ "@google-cloud/storage": "^7.11.3",
72
+ "@testing-library/jest-dom": "^5.16.5",
73
+ "@testing-library/react": "^13.4.0",
74
+ "@testing-library/user-event": "^13.5.0",
75
+ "@types/chroma-js": "^2.4.0",
76
+ "@types/jest": "^27.5.2",
77
+ "@types/node": "^16.18.23",
78
+ "@types/react": "^18.0.35",
79
+ "@types/react-dom": "^18.0.11",
80
+ "@types/react-google-recaptcha": "^2.1.5",
81
+ "@types/react-syntax-highlighter": "^15.5.6",
82
+ "html-webpack-plugin": "^5.5.0",
83
+ "jest": "^29.7.0",
84
+ "jest-environment-jsdom": "^29.7.0",
85
+ "ts-jest": "^29.1.0",
86
+ "web-vitals": "^2.1.4",
87
+ "webpack": "^5.79.0",
88
+ "webpack-cli": "^5.0.1",
89
+ "webpack-dev-server": "^4.13.2"
90
+ },
91
+ "publishConfig": {
92
+ "access": "public"
93
+ }
94
+ }