@pixodesk/svg-animator-vue 1.0.6 → 1.0.8
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/README.md +4 -0
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
# animator-vue
|
|
2
|
+
|
|
3
|
+
[](https://github.com/pixodesk/pixodesk-svg-animator/actions/workflows/ci.yml)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
|
|
2
6
|
Vue component for rendering and controlling Pixodesk SVG animations.
|
|
3
7
|
|
|
4
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pixodesk/svg-animator-vue",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Pixodesk SVG animator for Vue",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dist"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@pixodesk/svg-animator-web": "1.0.
|
|
28
|
+
"@pixodesk/svg-animator-web": "1.0.8"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"vue": ">=3"
|
|
@@ -36,14 +36,19 @@
|
|
|
36
36
|
"@testing-library/vue": "^8.1.0",
|
|
37
37
|
"@types/node": "^22.0.0",
|
|
38
38
|
"@vitejs/plugin-vue": "^5.2.0",
|
|
39
|
+
"eslint": "^9.0.0",
|
|
40
|
+
"eslint-plugin-vue": "^9.0.0",
|
|
39
41
|
"jsdom": "^25.0.0",
|
|
40
42
|
"tsup": "^8.0.0",
|
|
41
43
|
"typescript": "^5.0.0",
|
|
44
|
+
"typescript-eslint": "^8.0.0",
|
|
42
45
|
"vitest": "^2.0.0",
|
|
43
46
|
"vue": "^3.5.0"
|
|
44
47
|
},
|
|
45
48
|
"scripts": {
|
|
46
|
-
"
|
|
49
|
+
"lint": "eslint src/",
|
|
50
|
+
"lint:fix": "eslint src/ --fix",
|
|
51
|
+
"build": "eslint src/ && tsup",
|
|
47
52
|
"dev": "tsup --watch",
|
|
48
53
|
"typecheck": "tsc --noEmit",
|
|
49
54
|
"clean": "rm -rf dist",
|