@aarsteinmedia/dotlottie-player 6.2.5 → 6.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 +8 -0
- package/dist/canvas.d.ts +2 -2
- package/dist/canvas.js +10 -8
- package/dist/full.d.ts +4 -4
- package/dist/full.js +10 -8
- package/dist/light.d.ts +2 -2
- package/dist/light.js +10 -8
- package/dist/svg.d.ts +4 -4
- package/dist/svg.js +10 -8
- package/dist/unpkg-canvas.js +9 -7
- package/dist/unpkg-full.js +9 -7
- package/dist/unpkg-light.js +8 -6
- package/dist/unpkg-svg.js +8 -6
- package/package.json +22 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aarsteinmedia/dotlottie-player",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.1",
|
|
4
4
|
"description": "Web Component for playing Lottie animations in your web app.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -54,17 +54,18 @@
|
|
|
54
54
|
"build": "rollup -c --configPlugin typescript",
|
|
55
55
|
"prebuild:types": "rimraf ./types ",
|
|
56
56
|
"build:types": "tsc -p ./tsconfig.build.json && tsc-alias",
|
|
57
|
-
"build:cem": "npx cem analyze --config 'cem.config.
|
|
57
|
+
"build:cem": "npx cem analyze --config 'cem.config.ts'",
|
|
58
58
|
"prod": "pnpm build:types && pnpm build && pnpm build:cem",
|
|
59
59
|
"dev": "rollup -cw --configPlugin typescript --environment NODE_ENV:development --environment VER:full",
|
|
60
60
|
"dev:light": "rollup -cw --configPlugin typescript --environment NODE_ENV:development --environment VER:light",
|
|
61
61
|
"lint:js": "eslint src",
|
|
62
62
|
"lint:js:fix": "eslint src --fix",
|
|
63
63
|
"lint:css": "npx stylelint **/*.css",
|
|
64
|
-
"lint:css:fix": "npx stylelint **/*.css --fix"
|
|
64
|
+
"lint:css:fix": "npx stylelint **/*.css --fix",
|
|
65
|
+
"deploy": "npm login && npm publish"
|
|
65
66
|
},
|
|
66
67
|
"dependencies": {
|
|
67
|
-
"@aarsteinmedia/lottie-web": "^1.
|
|
68
|
+
"@aarsteinmedia/lottie-web": "^1.3.4",
|
|
68
69
|
"fflate": "^0.8.2"
|
|
69
70
|
},
|
|
70
71
|
"peerDependencies": {
|
|
@@ -74,49 +75,45 @@
|
|
|
74
75
|
"@custom-elements-manifest/analyzer": "^0.11.0",
|
|
75
76
|
"@esm-bundle/chai": "4.3.4-fix.0",
|
|
76
77
|
"@open-wc/testing": "^4.0.0",
|
|
77
|
-
"@rollup/plugin-commonjs": "^29.0.0",
|
|
78
78
|
"@rollup/plugin-json": "^6.1.0",
|
|
79
79
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
80
80
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
81
|
-
"@swc/core": "^1.15.
|
|
81
|
+
"@swc/core": "^1.15.18",
|
|
82
82
|
"@types/mocha": "^10.0.10",
|
|
83
|
-
"@types/node": "^
|
|
83
|
+
"@types/node": "^25.3.3",
|
|
84
84
|
"@types/path-browserify": "^1.0.3",
|
|
85
85
|
"@types/postcss-flexbugs-fixes": "^5.0.3",
|
|
86
|
-
"@types/react": "^19.2.
|
|
87
|
-
"@web/dev-server-esbuild": "^1.0.
|
|
86
|
+
"@types/react": "^19.2.14",
|
|
87
|
+
"@web/dev-server-esbuild": "^1.0.5",
|
|
88
88
|
"@web/dev-server-import-maps": "^0.2.1",
|
|
89
89
|
"@web/dev-server-rollup": "^0.6.4",
|
|
90
90
|
"@web/test-runner": "^0.20.2",
|
|
91
91
|
"@web/test-runner-playwright": "^0.11.1",
|
|
92
|
-
"autoprefixer": "^10.4.
|
|
93
|
-
"esbuild": "^0.27.
|
|
94
|
-
"eslint": "^9.39.
|
|
95
|
-
"eslint-config-
|
|
96
|
-
"eslint-
|
|
97
|
-
"eslint-plugin-perfectionist": "^4.15.1",
|
|
92
|
+
"autoprefixer": "^10.4.27",
|
|
93
|
+
"esbuild": "^0.27.3",
|
|
94
|
+
"eslint": "^9.39.3",
|
|
95
|
+
"eslint-config-sheriff": "^31.3.0",
|
|
96
|
+
"eslint-plugin-perfectionist": "^5.6.0",
|
|
98
97
|
"globals": "^16.5.0",
|
|
99
98
|
"jiti": "^2.6.1",
|
|
100
99
|
"postcss-flexbugs-fixes": "^5.0.2",
|
|
101
|
-
"prettier": "^3.
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"rollup": "^
|
|
105
|
-
"rollup-plugin-dts": "^6.2.3",
|
|
106
|
-
"rollup-plugin-esbuild-minify": "^1.3.0",
|
|
100
|
+
"prettier": "^3.8.1",
|
|
101
|
+
"rimraf": "^6.1.3",
|
|
102
|
+
"rollup": "^4.59.0",
|
|
103
|
+
"rollup-plugin-dts": "^6.3.0",
|
|
107
104
|
"rollup-plugin-html-literals": "^2.0.1",
|
|
108
105
|
"rollup-plugin-livereload": "^2.0.5",
|
|
109
|
-
"rollup-plugin-opener": "^0.
|
|
106
|
+
"rollup-plugin-opener": "^0.2.0",
|
|
110
107
|
"rollup-plugin-postcss": "^4.0.2",
|
|
111
108
|
"rollup-plugin-summary": "^3.0.1",
|
|
112
109
|
"rollup-plugin-swc3": "^0.12.1",
|
|
113
110
|
"rollup-plugin-typescript-paths": "^1.5.0",
|
|
114
|
-
"stylelint": "^
|
|
115
|
-
"stylelint-config-recommended": "^
|
|
111
|
+
"stylelint": "^17.4.0",
|
|
112
|
+
"stylelint-config-recommended": "^18.0.0",
|
|
116
113
|
"tsc-alias": "^1.8.16",
|
|
117
114
|
"tslib": "^2.8.1",
|
|
118
115
|
"typescript": "^5.9.3",
|
|
119
|
-
"typescript-eslint": "^8.
|
|
116
|
+
"typescript-eslint": "^8.56.1"
|
|
120
117
|
},
|
|
121
118
|
"pnpm": {
|
|
122
119
|
"onlyBuiltDependencies": [
|