@ix_waterford/lib 1.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.
Files changed (35) hide show
  1. package/README.md +49 -0
  2. package/dist/index.html +1 -0
  3. package/dist/static/js/async/reactPlayerDash.js +251 -0
  4. package/dist/static/js/async/reactPlayerDash.js.map +1 -0
  5. package/dist/static/js/async/reactPlayerHls.js +430 -0
  6. package/dist/static/js/async/reactPlayerHls.js.map +1 -0
  7. package/dist/static/js/async/reactPlayerMux.js +16076 -0
  8. package/dist/static/js/async/reactPlayerMux.js.map +1 -0
  9. package/dist/static/js/async/reactPlayerPreview.js +112 -0
  10. package/dist/static/js/async/reactPlayerPreview.js.map +1 -0
  11. package/dist/static/js/async/reactPlayerSpotify.js +519 -0
  12. package/dist/static/js/async/reactPlayerSpotify.js.map +1 -0
  13. package/dist/static/js/async/reactPlayerTiktok.js +489 -0
  14. package/dist/static/js/async/reactPlayerTiktok.js.map +1 -0
  15. package/dist/static/js/async/reactPlayerTwitch.js +587 -0
  16. package/dist/static/js/async/reactPlayerTwitch.js.map +1 -0
  17. package/dist/static/js/async/reactPlayerVimeo.js +4265 -0
  18. package/dist/static/js/async/reactPlayerVimeo.js.map +1 -0
  19. package/dist/static/js/async/reactPlayerWistia.js +768 -0
  20. package/dist/static/js/async/reactPlayerWistia.js.map +1 -0
  21. package/dist/static/js/async/reactPlayerYouTube.js +735 -0
  22. package/dist/static/js/async/reactPlayerYouTube.js.map +1 -0
  23. package/dist/static/js/async/vendors-node_modules_custom-media-element_dist_custom-media-element_js-node_modules_media-tra-835023.js +1254 -0
  24. package/dist/static/js/async/vendors-node_modules_custom-media-element_dist_custom-media-element_js-node_modules_media-tra-835023.js.map +1 -0
  25. package/dist/static/js/async/vendors-node_modules_dashjs_dist_modern_esm_dash_all_min_js.js +22 -0
  26. package/dist/static/js/async/vendors-node_modules_dashjs_dist_modern_esm_dash_all_min_js.js.map +1 -0
  27. package/dist/static/js/async/vendors-node_modules_hls_js_dist_hls_mjs.js +36660 -0
  28. package/dist/static/js/async/vendors-node_modules_hls_js_dist_hls_mjs.js.map +1 -0
  29. package/dist/static/js/index.js +4817 -0
  30. package/dist/static/js/index.js.map +1 -0
  31. package/dist/static/js/lib-react.js +3235 -0
  32. package/dist/static/js/lib-react.js.map +1 -0
  33. package/dist/static/js/vendors-node_modules_dayjs_plugin_utc_js-node_modules_react-color_es_index_js-node_modules_mu-c151eb.js +89093 -0
  34. package/dist/static/js/vendors-node_modules_dayjs_plugin_utc_js-node_modules_react-color_es_index_js-node_modules_mu-c151eb.js.map +1 -0
  35. package/package.json +89 -0
package/package.json ADDED
@@ -0,0 +1,89 @@
1
+ {
2
+ "name": "@ix_waterford/lib",
3
+ "version": "1.0.1",
4
+ "type": "module",
5
+ "main": "./dist/static/js/index.js",
6
+ "types": "./dist/static/js/index.d.ts",
7
+ "sideEffects": false,
8
+ "files": [
9
+ "dist",
10
+ "README.md"
11
+ ],
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "scripts": {
16
+ "dev": "rsbuild dev",
17
+ "build": "rsbuild build",
18
+ "preview": "rsbuild preview",
19
+ "lint": "eslint src --ext .ts,.tsx",
20
+ "lint:fix": "eslint src --ext .ts,.tsx --fix",
21
+ "type-check": "tsc --noEmit",
22
+ "prepare": "husky",
23
+ "pre-commit": "lint-staged",
24
+ "test": "echo \"Error: no test specified\" && exit 1"
25
+ },
26
+ "keywords": [],
27
+ "author": "",
28
+ "license": "ISC",
29
+ "description": "",
30
+ "dependencies": {
31
+ "@dnd-kit/core": "^6.3.1",
32
+ "@dnd-kit/sortable": "^10.0.0",
33
+ "@dnd-kit/utilities": "^3.2.2",
34
+ "@lexical/history": "^0.38.2",
35
+ "@lexical/html": "^0.38.2",
36
+ "@lexical/react": "^0.38.2",
37
+ "@lexical/rich-text": "^0.38.2",
38
+ "@lexical/selection": "^0.38.2",
39
+ "@lexical/utils": "^0.38.2",
40
+ "date-fns": "^4.1.0",
41
+ "lexical": "^0.38.2",
42
+ "react-color": "^2.19.3",
43
+ "react-player": "^3.3.3",
44
+ "swiper": "^12.0.3"
45
+ },
46
+ "peerDependencies": {
47
+ "@emotion/react": "^11.14.0",
48
+ "@emotion/styled": "^11.14.1",
49
+ "@mui/icons-material": "^7.3.4",
50
+ "@mui/lab": "^7.0.1-beta.19",
51
+ "@mui/material": "^7.3.4",
52
+ "@mui/x-date-pickers": "^8.16.0",
53
+ "dayjs": "^1.11.19",
54
+ "react": "^19.2.0",
55
+ "react-dom": "^19.2.0"
56
+ },
57
+ "devDependencies": {
58
+ "@emotion/react": "^11.14.0",
59
+ "@emotion/styled": "^11.14.1",
60
+ "@mui/icons-material": "^7.3.4",
61
+ "@mui/material": "^7.3.4",
62
+ "@mui/x-date-pickers": "^8.16.0",
63
+ "@rsbuild/core": "^1.5.17",
64
+ "@rsbuild/plugin-react": "^1.4.1",
65
+ "@types/react": "^19.2.2",
66
+ "@types/react-color": "^3.0.13",
67
+ "@types/react-dom": "^19.2.2",
68
+ "@typescript-eslint/eslint-plugin": "^8.46.2",
69
+ "@typescript-eslint/parser": "^8.46.2",
70
+ "dayjs": "^1.11.19",
71
+ "eslint": "^9.38.0",
72
+ "eslint-import-resolver-typescript": "^4.4.4",
73
+ "eslint-plugin-import": "^2.32.0",
74
+ "eslint-plugin-jsx-a11y": "^6.10.2",
75
+ "eslint-plugin-react": "^7.37.5",
76
+ "eslint-plugin-react-hooks": "^7.0.0",
77
+ "eslint-plugin-react-refresh": "^0.4.24",
78
+ "husky": "^9.1.7",
79
+ "lint-staged": "^16.2.4",
80
+ "react": "^19.2.0",
81
+ "react-dom": "^19.2.0",
82
+ "typescript": "^5.9.3"
83
+ },
84
+ "lint-staged": {
85
+ "*.{ts,tsx}": [
86
+ "eslint"
87
+ ]
88
+ }
89
+ }