minerva-plexus-csd 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/README.md +26 -0
- package/dist/grafico.svg +107 -0
- package/dist/index.d.ts +334 -0
- package/dist/minerva-plexus-csd.es.js +38564 -0
- package/dist/minerva-plexus-csd.umd.js +1681 -0
- package/dist/minervalogin.png +0 -0
- package/dist/style.css +5 -0
- package/dist/vite.svg +1 -0
- package/package.json +109 -0
package/package.json
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "minerva-plexus-csd",
|
|
3
|
+
"private": false,
|
|
4
|
+
"description": "A reusable chat logic library for React applications",
|
|
5
|
+
"version": "1.0.0",
|
|
6
|
+
"main": "dist/minerva-plexus-csd.umd.js",
|
|
7
|
+
"module": "dist/minerva-plexus-csd.es.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"type": "module",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"src/scss"
|
|
13
|
+
],
|
|
14
|
+
"peerDependencies": {
|
|
15
|
+
"react": ">=18.2.0 <21",
|
|
16
|
+
"react-dom": ">=18.2.0 <21",
|
|
17
|
+
"react-query": "^3.39.3",
|
|
18
|
+
"react-router-dom": "^6.26.1",
|
|
19
|
+
"styled-components": "^6.1.12"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"chat",
|
|
23
|
+
"react",
|
|
24
|
+
"library",
|
|
25
|
+
"hexagonal architecture"
|
|
26
|
+
],
|
|
27
|
+
"author": "Plexus - Rafa P. rafael.penya@plexus.es",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"scripts": {
|
|
30
|
+
"dev": "vite --mode devhost",
|
|
31
|
+
"build": "vite build --mode lib",
|
|
32
|
+
"test": "jest --watchAll --coverage",
|
|
33
|
+
"test:ci": "jest --coverage",
|
|
34
|
+
"test:watch": "jest --watch",
|
|
35
|
+
"test:coverage": "jest --coverage",
|
|
36
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
37
|
+
"preview": "vite preview",
|
|
38
|
+
"sonar": "sonar-scanner"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@babel/preset-env": "^7.25.3",
|
|
42
|
+
"@babel/preset-react": "^7.24.7",
|
|
43
|
+
"@popperjs/core": "^2.11.8",
|
|
44
|
+
"@testing-library/user-event": "^14.5.2",
|
|
45
|
+
"@types/styled-components": "^5.1.34",
|
|
46
|
+
"bootstrap": "^5.3.3",
|
|
47
|
+
"bootstrap-icons": "^1.11.3",
|
|
48
|
+
"dotenv": "^16.4.5",
|
|
49
|
+
"i18next": "^23.12.2",
|
|
50
|
+
"i18next-browser-languagedetector": "^8.0.0",
|
|
51
|
+
"jose": "^6.0.10",
|
|
52
|
+
"js-cookie": "^3.0.5",
|
|
53
|
+
"jwt-decode": "^4.0.0",
|
|
54
|
+
"minerva-components-library": "^2.1.19",
|
|
55
|
+
|
|
56
|
+
"react-bootstrap": "^2.10.4",
|
|
57
|
+
"react-i18next": "^15.0.1",
|
|
58
|
+
"react-markdown": "^9.0.1",
|
|
59
|
+
"react-pro-sidebar": "^1.1.0",
|
|
60
|
+
"react-query": "^3.39.3",
|
|
61
|
+
"react-syntax-highlighter": "^15.6.1",
|
|
62
|
+
"react-transition-group": "^4.4.5",
|
|
63
|
+
"sass": "^1.77.8",
|
|
64
|
+
"sweetalert2": "^11.12.4",
|
|
65
|
+
"sweetalert2-react-content": "^5.0.7",
|
|
66
|
+
"uuid": "^11.1.0"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@babel/core": "^7.25.2",
|
|
70
|
+
"@eslint/js": "^9.9.0",
|
|
71
|
+
"@microsoft/api-extractor": "^7.47.9",
|
|
72
|
+
"@testing-library/dom": "^10.4.0",
|
|
73
|
+
"@testing-library/jest-dom": "^6.4.8",
|
|
74
|
+
"@testing-library/react": "^16.0.0",
|
|
75
|
+
"@testing-library/react-hooks": "^8.0.1",
|
|
76
|
+
"@types/jest": "^29.5.12",
|
|
77
|
+
"@types/js-cookie": "^3.0.6",
|
|
78
|
+
"@types/node": "^22.5.1",
|
|
79
|
+
"@types/react": "^18.3.3",
|
|
80
|
+
"@types/react-dom": "^18.3.0",
|
|
81
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
82
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
83
|
+
"@typescript-eslint/parser": "^7.15.0",
|
|
84
|
+
"@vitejs/plugin-react": "^4.3.1",
|
|
85
|
+
"babel-jest": "^29.7.0",
|
|
86
|
+
"babel-plugin-styled-components": "^2.1.4",
|
|
87
|
+
"eslint": "^9.9.0",
|
|
88
|
+
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
89
|
+
"eslint-plugin-react-refresh": "^0.4.9",
|
|
90
|
+
"eslint-plugin-tsdoc": "^0.3.0",
|
|
91
|
+
"globals": "^15.9.0",
|
|
92
|
+
"identity-obj-proxy": "^3.0.0",
|
|
93
|
+
"jest": "^29.7.0",
|
|
94
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
95
|
+
"jest-svg-transformer": "^1.0.0",
|
|
96
|
+
"jest-transform-stub": "^2.0.0",
|
|
97
|
+
"jest-transformer-svg": "^2.0.2",
|
|
98
|
+
"react-router-dom": "^6.26.1",
|
|
99
|
+
"sass-embedded": "^1.77.8",
|
|
100
|
+
"sonarlint": "^1.1.0",
|
|
101
|
+
"ts-jest": "^29.2.5",
|
|
102
|
+
"ts-jest-mock-import-meta": "^1.2.0",
|
|
103
|
+
"ts-node": "^10.9.2",
|
|
104
|
+
"typescript": "^5.5.3",
|
|
105
|
+
"typescript-eslint": "^8.0.1",
|
|
106
|
+
"vite": "^5.4.1",
|
|
107
|
+
"vite-plugin-dts": "^4.2.3"
|
|
108
|
+
}
|
|
109
|
+
}
|