od-support-chat 1.0.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.
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "od-support-chat",
3
+ "private": false,
4
+ "version": "1.0.0",
5
+ "type": "module",
6
+ "main": "./dist/od-support-chat.umd.js",
7
+ "module": "./dist/od-support-chat.es.js",
8
+ "types": "./dist/main.d.ts",
9
+ "scripts": {
10
+ "dev": "vite --host localhost --port 9081",
11
+ "build": "vite build",
12
+ "preview": "vite preview --host localhost --port 3000",
13
+ "local": "vite preview --host localhost --port 3000"
14
+ },
15
+ "exports": {
16
+ ".": {
17
+ "import": "./dist/od-support-chat.es.js",
18
+ "require": "./dist/od-support-chat.umd.js",
19
+ "types": "./dist/index.d.ts"
20
+ }
21
+ },
22
+ "dependencies": {
23
+ "@hookform/resolvers": "^2.9.10",
24
+ "prop-types": "^15.8.1",
25
+ "react": "^18.2.0",
26
+ "react-code-blocks": "^0.1.6",
27
+ "react-dom": "^18.2.0",
28
+ "react-hook-form": "^7.38.0",
29
+ "react-uuid": "^2.0.0",
30
+ "styled-components": "^6.1.6",
31
+ "tailwind-merge": "^1.7.0",
32
+ "tw-elements-react": "^1.0.0-alpha2",
33
+ "zod": "^3.19.1"
34
+ },
35
+ "devDependencies": {
36
+ "@types/react": "^18.0.17",
37
+ "@types/react-dom": "^18.0.6",
38
+ "@vitejs/plugin-react": "^2.1.0",
39
+ "tailwindcss": "^3.2.1",
40
+ "tsdown": "^0.21.7",
41
+ "typescript": "^6.0.2",
42
+ "vite": "^3.1.0"
43
+ },
44
+
45
+ "files": [
46
+ "dist/"
47
+ ]
48
+ }