@mxenabled/connect-widget 0.0.1

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": "@mxenabled/connect-widget",
3
+ "description": "A simple ui library for React",
4
+ "version": "0.0.1",
5
+ "module": "dist/index.es.js",
6
+ "types": "dist/index.d.ts",
7
+ "type": "module",
8
+ "files": [
9
+ "/dist"
10
+ ],
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "scripts": {
15
+ "dev": "vite",
16
+ "build": "tsc && vite build",
17
+ "lint": "eslint . --ext ts,tsx,js,jsx,md --report-unused-disable-directives --max-warnings 14",
18
+ "preview": "vite preview",
19
+ "prepare": "husky",
20
+ "test": "vitest",
21
+ "i18n": "node scripts/i18n.js"
22
+ },
23
+ "dependencies": {
24
+ "@emotion/react": "^11.13.0",
25
+ "@emotion/styled": "^11.13.0",
26
+ "@kyper/button": "^4.0.0",
27
+ "@kyper/hooks": "^1.0.0",
28
+ "@kyper/icon": "^1.18.1",
29
+ "@kyper/input": "^6.1.0",
30
+ "@kyper/institutionlogo": "^3.1.0",
31
+ "@kyper/messagebox": "^3.1.0",
32
+ "@kyper/progressindicators": "^3.1.0",
33
+ "@kyper/select": "^2.0.0",
34
+ "@kyper/selectionbox": "^2.1.0",
35
+ "@kyper/tag": "^3.0.0",
36
+ "@kyper/text": "^3.0.0",
37
+ "@kyper/textarea": "^4.1.0",
38
+ "@kyper/tokenprovider": "^4.0.1",
39
+ "@kyper/userfeedback": "^2.0.0",
40
+ "@kyper/utilityrow": "^2.1.0",
41
+ "@mui/material": "^5.16.7",
42
+ "@reduxjs/toolkit": "^2.2.7",
43
+ "@types/node": "^22.1.0",
44
+ "axios": "^1.7.4",
45
+ "bowser": "^2.11.0",
46
+ "date-fns": "^3.6.0",
47
+ "dompurify": "^3.1.6",
48
+ "focus-trap-react": "^10.2.3",
49
+ "gettext.js": "^2.0.3",
50
+ "js-sha256": "^0.11.0",
51
+ "lodash": "^4.17.21",
52
+ "numeral": "^2.0.6",
53
+ "react": "^18.3.1",
54
+ "react-dom": "^18.3.1",
55
+ "react-redux": "^9.1.2",
56
+ "rxjs": "^7.8.1",
57
+ "uuid": "^10.0.0",
58
+ "velocity-animate": "^1.5.2",
59
+ "vite-plugin-dts": "^4.0.0-beta.2"
60
+ },
61
+ "devDependencies": {
62
+ "@kyper/mui": "^4.0.1",
63
+ "@mx-cartographer/kyper-mui": "^2.2.0-alpha1",
64
+ "@testing-library/dom": "^10.4.0",
65
+ "@testing-library/jest-dom": "^6.4.8",
66
+ "@testing-library/react": "^16.0.0",
67
+ "@testing-library/user-event": "^14.5.2",
68
+ "@types/react": "^18.3.3",
69
+ "@types/react-dom": "^18.3.0",
70
+ "@types/uuid": "^10.0.0",
71
+ "@typescript-eslint/eslint-plugin": "^7.15.0",
72
+ "@typescript-eslint/parser": "^7.15.0",
73
+ "@vitejs/plugin-react": "^4.3.1",
74
+ "colors": "^1.4.0",
75
+ "commander": "^12.1.0",
76
+ "esbuild": "^0.23.1",
77
+ "eslint": "^8.57.0",
78
+ "eslint-config-mx": "^4.0.0",
79
+ "eslint-config-prettier": "^9.1.0",
80
+ "eslint-plugin-react": "^7.35.0",
81
+ "eslint-plugin-react-refresh": "^0.4.7",
82
+ "eslint-plugin-vitest-globals": "^1.5.0",
83
+ "husky": "^9.1.4",
84
+ "jsdom": "^24.1.1",
85
+ "lint-staged": "^15.2.8",
86
+ "markdown-eslint-parser": "^1.2.1",
87
+ "prettier": "3.3.3",
88
+ "rollup": "^4.21.0",
89
+ "typescript": "^5.2.2",
90
+ "typescript-eslint": "^8.2.0",
91
+ "vite": "^5.3.4",
92
+ "vite-plugin-svgr": "^4.2.0",
93
+ "vitest": "^2.0.5"
94
+ },
95
+ "lint-staged": {
96
+ "**/*.{js,jsx,ts,tsx}": [
97
+ "npm run lint",
98
+ "npx prettier . --write"
99
+ ]
100
+ },
101
+ "volta": {
102
+ "node": "20.12.0",
103
+ "npm": "10.5.0"
104
+ }
105
+ }