@aarsteinmedia/dotlottie-player 5.0.0 → 5.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/CHANGELOG.md +7 -0
- package/custom-elements.json +12 -2050
- package/dist/index.d.ts +16 -86
- package/dist/index.js +109 -75
- package/dist/unpkg/index.js +2 -2
- package/package.json +33 -35
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aarsteinmedia/dotlottie-player",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "Web Component for playing Lottie animations in your web app. Previously @johanaarstein/dotlottie-player",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -46,74 +46,72 @@
|
|
|
46
46
|
"lint:js": "eslint",
|
|
47
47
|
"lint:js:fix": "eslint --fix",
|
|
48
48
|
"lint:css": "npx stylelint **/*.css",
|
|
49
|
-
"lint:css:fix": "npx stylelint **/*.css --fix"
|
|
50
|
-
"lint:pkg": "npmPkgJsonLint .",
|
|
51
|
-
"lint:pkg:fix": "npmPkgJsonLint . --fix"
|
|
49
|
+
"lint:css:fix": "npx stylelint **/*.css --fix"
|
|
52
50
|
},
|
|
53
51
|
"dependencies": {
|
|
52
|
+
"@aarsteinmedia/lottie-web": "^0.2.21",
|
|
54
53
|
"fflate": "^0.8.2",
|
|
55
|
-
"lottie-web": "^5.
|
|
54
|
+
"lottie-web": "^5.13.0"
|
|
56
55
|
},
|
|
57
56
|
"peerDependencies": {
|
|
58
57
|
"@types/react": ">= 16.0.0"
|
|
59
58
|
},
|
|
60
59
|
"devDependencies": {
|
|
61
60
|
"@custom-elements-manifest/analyzer": "^0.10.4",
|
|
62
|
-
"@eslint/compat": "^1.2.
|
|
63
|
-
"@eslint/js": "^9.
|
|
61
|
+
"@eslint/compat": "^1.2.9",
|
|
62
|
+
"@eslint/js": "^9.27.0",
|
|
64
63
|
"@esm-bundle/chai": "4.3.4-fix.0",
|
|
65
64
|
"@open-wc/testing": "^4.0.0",
|
|
66
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
65
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
|
67
66
|
"@rollup/plugin-json": "^6.1.0",
|
|
68
|
-
"@rollup/plugin-node-resolve": "^16.0.
|
|
67
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
69
68
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
70
|
-
"@swc/core": "^1.11.
|
|
69
|
+
"@swc/core": "^1.11.29",
|
|
71
70
|
"@types/mocha": "^10.0.10",
|
|
72
|
-
"@types/node": "^22.
|
|
71
|
+
"@types/node": "^22.15.21",
|
|
73
72
|
"@types/path-browserify": "^1.0.3",
|
|
74
|
-
"@types/react": "^19.
|
|
73
|
+
"@types/react": "^19.1.5",
|
|
75
74
|
"@web/dev-server-esbuild": "^1.0.4",
|
|
76
75
|
"@web/dev-server-import-maps": "^0.2.1",
|
|
77
76
|
"@web/dev-server-rollup": "^0.6.4",
|
|
78
|
-
"@web/test-runner": "^0.20.
|
|
77
|
+
"@web/test-runner": "^0.20.2",
|
|
79
78
|
"@web/test-runner-playwright": "^0.11.0",
|
|
80
|
-
"autoprefixer": "^10.4.
|
|
81
|
-
"esbuild": "^0.25.
|
|
82
|
-
"eslint": "^9.
|
|
83
|
-
"eslint-config-prettier": "^10.
|
|
84
|
-
"eslint-import-resolver-typescript": "^3.
|
|
79
|
+
"autoprefixer": "^10.4.21",
|
|
80
|
+
"esbuild": "^0.25.4",
|
|
81
|
+
"eslint": "^9.27.0",
|
|
82
|
+
"eslint-config-prettier": "^10.1.5",
|
|
83
|
+
"eslint-import-resolver-typescript": "^4.3.5",
|
|
85
84
|
"eslint-plugin-import": "^2.31.0",
|
|
86
|
-
"eslint-plugin-jsdoc": "^50.6.
|
|
87
|
-
"eslint-plugin-perfectionist": "^4.
|
|
88
|
-
"eslint-plugin-prettier": "^5.
|
|
89
|
-
"globals": "^16.
|
|
90
|
-
"npm-package-json-lint": "^8.0.0",
|
|
91
|
-
"npm-package-json-lint-config-default": "^7.0.1",
|
|
85
|
+
"eslint-plugin-jsdoc": "^50.6.17",
|
|
86
|
+
"eslint-plugin-perfectionist": "^4.13.0",
|
|
87
|
+
"eslint-plugin-prettier": "^5.4.0",
|
|
88
|
+
"globals": "^16.1.0",
|
|
92
89
|
"postcss-flexbugs-fixes": "^5.0.2",
|
|
93
|
-
"prettier": "^3.5.
|
|
94
|
-
"react": "^19.
|
|
90
|
+
"prettier": "^3.5.3",
|
|
91
|
+
"react": "^19.1.0",
|
|
95
92
|
"rimraf": "^6.0.1",
|
|
96
|
-
"rollup": "^4.
|
|
97
|
-
"rollup-plugin-dts": "^6.
|
|
93
|
+
"rollup": "^4.41.0",
|
|
94
|
+
"rollup-plugin-dts": "^6.2.1",
|
|
98
95
|
"rollup-plugin-html-literals": "^1.1.8",
|
|
99
96
|
"rollup-plugin-livereload": "^2.0.5",
|
|
100
97
|
"rollup-plugin-postcss": "^4.0.2",
|
|
101
98
|
"rollup-plugin-serve": "^3.0.0",
|
|
102
|
-
"rollup-plugin-summary": "^3.0.
|
|
99
|
+
"rollup-plugin-summary": "^3.0.1",
|
|
103
100
|
"rollup-plugin-swc3": "^0.12.1",
|
|
104
101
|
"rollup-plugin-typescript-paths": "^1.5.0",
|
|
105
|
-
"stylelint": "^16.
|
|
106
|
-
"stylelint-config-recommended": "^
|
|
107
|
-
"tsc-alias": "^1.8.
|
|
102
|
+
"stylelint": "^16.19.1",
|
|
103
|
+
"stylelint-config-recommended": "^16.0.0",
|
|
104
|
+
"tsc-alias": "^1.8.16",
|
|
108
105
|
"tslib": "^2.8.1",
|
|
109
|
-
"typescript": "^5.
|
|
110
|
-
"typescript-eslint": "^8.
|
|
106
|
+
"typescript": "^5.8.3",
|
|
107
|
+
"typescript-eslint": "^8.32.1"
|
|
111
108
|
},
|
|
112
109
|
"pnpm": {
|
|
113
110
|
"onlyBuiltDependencies": [
|
|
114
111
|
"@parcel/watcher",
|
|
115
112
|
"@swc/core",
|
|
116
|
-
"esbuild"
|
|
113
|
+
"esbuild",
|
|
114
|
+
"unrs-resolver"
|
|
117
115
|
]
|
|
118
116
|
},
|
|
119
117
|
"browserslist": {
|