@noction/vue-bezier 1.10.0 → 1.12.0
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/LICENSE +21 -0
- package/dist/style.css +1 -1
- package/dist/types/components/Collapse/CollapseTransition.vue.d.ts +17 -14
- package/dist/types/components/Fade/FadeTransition.vue.d.ts +16 -14
- package/dist/types/components/Scale/ScaleTransition.vue.d.ts +16 -14
- package/dist/types/components/Slide/SlideXLeftTransition.vue.d.ts +16 -14
- package/dist/types/components/Slide/SlideXRightTransition.vue.d.ts +16 -14
- package/dist/types/components/Slide/SlideYDownTransition.vue.d.ts +16 -14
- package/dist/types/components/Slide/SlideYUpTransition.vue.d.ts +16 -14
- package/dist/types/components/Zoom/ZoomCenterTransition.vue.d.ts +16 -14
- package/dist/types/components/Zoom/ZoomUpTransition.vue.d.ts +16 -14
- package/dist/types/components/Zoom/ZoomXTransition.vue.d.ts +16 -14
- package/dist/types/components/Zoom/ZoomYTransition.vue.d.ts +16 -14
- package/dist/vue-bezier.js +184 -198
- package/dist/web-types.json +8 -8
- package/package.json +24 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noction/vue-bezier",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "Vue3 reusable transition components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"transitions",
|
|
@@ -28,7 +28,10 @@
|
|
|
28
28
|
"dist"
|
|
29
29
|
],
|
|
30
30
|
"exports": {
|
|
31
|
-
".":
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./dist/types/main.d.ts",
|
|
33
|
+
"import": "./dist/vue-bezier.js"
|
|
34
|
+
},
|
|
32
35
|
"./*": "./*",
|
|
33
36
|
"./types": "./dist/types/main.d.ts",
|
|
34
37
|
"./styles": "./dist/style.css"
|
|
@@ -38,34 +41,33 @@
|
|
|
38
41
|
"module": "dist/vue-bezier.js",
|
|
39
42
|
"types": "dist/types/main.d.ts",
|
|
40
43
|
"type": "module",
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@faker-js/faker": "^8.4.1",
|
|
46
|
+
"@types/node": "^22.1.0",
|
|
47
|
+
"@vitejs/plugin-vue": "^5.1.2",
|
|
48
|
+
"@vitest/coverage-v8": "^2.0.5",
|
|
49
|
+
"@vue/test-utils": "^2.4.6",
|
|
50
|
+
"cross-env": "^7.0.3",
|
|
51
|
+
"jsdom": "^24.1.1",
|
|
52
|
+
"minimist": "^1.2.8",
|
|
53
|
+
"sass": "^1.77.8",
|
|
54
|
+
"vite": "^5.3.5",
|
|
55
|
+
"vitest": "^2.0.5",
|
|
56
|
+
"vue": "^3.4.35",
|
|
57
|
+
"vue-docgen-web-types": "^0.1.8",
|
|
58
|
+
"vue-tsc": "^2.0.29"
|
|
59
|
+
},
|
|
60
|
+
"web-types": "./dist/web-types.json",
|
|
41
61
|
"scripts": {
|
|
42
62
|
"dev": "cross-env NODE_ENV=development vite build --watch",
|
|
43
63
|
"build:light": "cross-env NODE_ENV=development vite build",
|
|
44
64
|
"prebuild": "vue-tsc -p tsconfig.build.json",
|
|
45
65
|
"build": "vite build",
|
|
46
66
|
"postbuild": "vue-docgen-web-types",
|
|
47
|
-
"prepublishOnly": "npm run build",
|
|
48
67
|
"lint:es": "eslint \"src/**/*.{js,ts,vue}\" --fix --color",
|
|
49
68
|
"lint:style": "stylelint src/**/*.{css,scss,vue} --color --fix",
|
|
50
69
|
"test": "vitest",
|
|
51
70
|
"test:coverage": "vitest run --coverage",
|
|
52
71
|
"type:check": "vue-tsc --noEmit"
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
"@faker-js/faker": "^8.3.1",
|
|
56
|
-
"@types/node": "^20.10.5",
|
|
57
|
-
"@vitejs/plugin-vue": "^5.0.0",
|
|
58
|
-
"@vitest/coverage-v8": "^1.1.0",
|
|
59
|
-
"@vue/test-utils": "^2.4.3",
|
|
60
|
-
"cross-env": "^7.0.3",
|
|
61
|
-
"jsdom": "^23.0.1",
|
|
62
|
-
"minimist": "^1.2.8",
|
|
63
|
-
"sass": "^1.69.5",
|
|
64
|
-
"vite": "^5.0.10",
|
|
65
|
-
"vitest": "^1.1.0",
|
|
66
|
-
"vue": "^3.3.13",
|
|
67
|
-
"vue-tsc": "^1.8.27",
|
|
68
|
-
"vue-docgen-web-types": "^0.1.8"
|
|
69
|
-
},
|
|
70
|
-
"web-types": "./dist/web-types.json"
|
|
71
|
-
}
|
|
72
|
+
}
|
|
73
|
+
}
|