@aarsteinmedia/dotlottie-player 5.2.4 → 5.3.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/CHANGELOG.md +10 -0
- package/custom-elements.json +23 -38
- package/dist/index.d.ts +10 -36
- package/dist/index.js +169 -579
- package/dist/unpkg.js +69 -7
- package/package.json +11 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aarsteinmedia/dotlottie-player",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.1",
|
|
4
4
|
"description": "Web Component for playing Lottie animations in your web app. Previously @johanaarstein/dotlottie-player",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"lint:css:fix": "npx stylelint **/*.css --fix"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@aarsteinmedia/lottie-web": "^1.
|
|
51
|
+
"@aarsteinmedia/lottie-web": "^1.1.5",
|
|
52
52
|
"fflate": "^0.8.2"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
@@ -58,13 +58,13 @@
|
|
|
58
58
|
"@custom-elements-manifest/analyzer": "^0.10.4",
|
|
59
59
|
"@esm-bundle/chai": "4.3.4-fix.0",
|
|
60
60
|
"@open-wc/testing": "^4.0.0",
|
|
61
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
61
|
+
"@rollup/plugin-commonjs": "^28.0.6",
|
|
62
62
|
"@rollup/plugin-json": "^6.1.0",
|
|
63
63
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
64
|
-
"@rollup/plugin-typescript": "^12.1.
|
|
65
|
-
"@swc/core": "^1.12.
|
|
64
|
+
"@rollup/plugin-typescript": "^12.1.3",
|
|
65
|
+
"@swc/core": "^1.12.4",
|
|
66
66
|
"@types/mocha": "^10.0.10",
|
|
67
|
-
"@types/node": "^24.0.
|
|
67
|
+
"@types/node": "^24.0.3",
|
|
68
68
|
"@types/path-browserify": "^1.0.3",
|
|
69
69
|
"@types/postcss-flexbugs-fixes": "^5.0.3",
|
|
70
70
|
"@types/react": "^19.1.8",
|
|
@@ -78,14 +78,14 @@
|
|
|
78
78
|
"eslint": "^9.29.0",
|
|
79
79
|
"eslint-config-prettier": "^10.1.5",
|
|
80
80
|
"eslint-config-sheriff": "^28.0.0",
|
|
81
|
-
"eslint-plugin-perfectionist": "^4.
|
|
81
|
+
"eslint-plugin-perfectionist": "^4.15.0",
|
|
82
82
|
"globals": "^16.2.0",
|
|
83
83
|
"jiti": "^2.4.2",
|
|
84
84
|
"postcss-flexbugs-fixes": "^5.0.2",
|
|
85
85
|
"prettier": "^3.5.3",
|
|
86
86
|
"react": "^19.1.0",
|
|
87
87
|
"rimraf": "^6.0.1",
|
|
88
|
-
"rollup": "^4.
|
|
88
|
+
"rollup": "^4.44.0",
|
|
89
89
|
"rollup-plugin-dts": "^6.2.1",
|
|
90
90
|
"rollup-plugin-esbuild-minify": "^1.3.0",
|
|
91
91
|
"rollup-plugin-html-literals": "^2.0.0",
|
|
@@ -95,12 +95,12 @@
|
|
|
95
95
|
"rollup-plugin-summary": "^3.0.1",
|
|
96
96
|
"rollup-plugin-swc3": "^0.12.1",
|
|
97
97
|
"rollup-plugin-typescript-paths": "^1.5.0",
|
|
98
|
-
"stylelint": "^16.
|
|
98
|
+
"stylelint": "^16.21.0",
|
|
99
99
|
"stylelint-config-recommended": "^16.0.0",
|
|
100
100
|
"tsc-alias": "^1.8.16",
|
|
101
101
|
"tslib": "^2.8.1",
|
|
102
102
|
"typescript": "^5.8.3",
|
|
103
|
-
"typescript-eslint": "^8.34.
|
|
103
|
+
"typescript-eslint": "^8.34.1"
|
|
104
104
|
},
|
|
105
105
|
"pnpm": {
|
|
106
106
|
"onlyBuiltDependencies": [
|
|
@@ -132,10 +132,8 @@
|
|
|
132
132
|
"keywords": [
|
|
133
133
|
"lottie",
|
|
134
134
|
"dotlottie",
|
|
135
|
-
"
|
|
135
|
+
"bodymovin",
|
|
136
136
|
"web component",
|
|
137
|
-
"svg",
|
|
138
|
-
"vector",
|
|
139
137
|
"player"
|
|
140
138
|
],
|
|
141
139
|
"publishConfig": {
|