@2uinc/frontend-component-xpert-chatbot 1.0.5

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,105 @@
1
+ {
2
+ "name": "@2uinc/frontend-component-xpert-chatbot",
3
+ "version": "1.0.5",
4
+ "homepage": "/app/plugins/xpert-chatbot/frontend/build/",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/2uinc/frontend-component-xpert-chatbot.git"
8
+ },
9
+ "type": "module",
10
+ "main": "./dist/lib/index.min.js",
11
+ "files": [
12
+ "dist/lib/**/*.js"
13
+ ],
14
+ "sideEffects": [
15
+ "**/*.css"
16
+ ],
17
+ "scripts": {
18
+ "start": "vite",
19
+ "test": "vitest",
20
+ "build": "npm run build:app && npm run build:lib",
21
+ "build:app": "vite build --config ./vite.app.config.js",
22
+ "build:lib": "vite build --config ./vite.lib.config.js",
23
+ "lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
24
+ "preview": "vite preview",
25
+ "commit": "git cz"
26
+ },
27
+ "eslintConfig": {
28
+ "extends": [
29
+ "react-app",
30
+ "react-app/jest"
31
+ ]
32
+ },
33
+ "browserslist": {
34
+ "production": [
35
+ ">0.2%",
36
+ "not dead",
37
+ "not op_mini all"
38
+ ],
39
+ "development": [
40
+ "last 1 chrome version",
41
+ "last 1 firefox version",
42
+ "last 1 safari version"
43
+ ]
44
+ },
45
+ "peerDependencies": {
46
+ "react": "^17.0.2",
47
+ "react-dom": "^17.0.2"
48
+ },
49
+ "devDependencies": {
50
+ "@fullhuman/postcss-purgecss": "^5.0.0",
51
+ "@iconify/react": "^4.1.1",
52
+ "@semantic-release/exec": "^6.0.3",
53
+ "@semantic-release/git": "^10.0.1",
54
+ "@semantic-release/github": "^9.2.1",
55
+ "@semantic-release/npm": "^11.0.0",
56
+ "@testing-library/jest-dom": "^6.1.3",
57
+ "@testing-library/react": "^12.1.5",
58
+ "@testing-library/user-event": "^14.5.1",
59
+ "@vitejs/plugin-react": "^4.1.0",
60
+ "cz-conventional-changelog": "^3.3.0",
61
+ "eslint": "^8.47.0",
62
+ "eslint-plugin-react": "^7.33.2",
63
+ "eslint-plugin-react-hooks": "^4.6.0",
64
+ "eslint-plugin-react-refresh": "^0.4.3",
65
+ "prop-types": "^15.8.1",
66
+ "react": "^17.0.2",
67
+ "react-dom": "^17.0.2",
68
+ "sass": "^1.66.1",
69
+ "vite": "^4.4.9",
70
+ "vitest": "^0.34.2"
71
+ },
72
+ "dependencies": {
73
+ "classnames": "^2.3.2",
74
+ "focus-trap-react": "^10.2.1",
75
+ "js-cookie": "^3.0.5",
76
+ "react-markdown": "^8.0.7"
77
+ },
78
+ "release": {
79
+ "branches": [
80
+ "main"
81
+ ],
82
+ "plugins": [
83
+ "@semantic-release/commit-analyzer",
84
+ "@semantic-release/npm",
85
+ "@semantic-release/release-notes-generator",
86
+ "@semantic-release/github",
87
+ "@semantic-release/git",
88
+ [
89
+ "@semantic-release/exec",
90
+ {
91
+ "publishCmd": "sh ./scripts/publish-assets.sh v${nextRelease.version}"
92
+ }
93
+ ]
94
+ ]
95
+ },
96
+ "publishConfig": {
97
+ "registry": "https://registry.npmjs.org/",
98
+ "access": "public"
99
+ },
100
+ "config": {
101
+ "commitizen": {
102
+ "path": "./node_modules/cz-conventional-changelog"
103
+ }
104
+ }
105
+ }