@vueuse/motion
Advanced tools
Comparing version 2.0.0-beta.27 to 2.0.0-beta.28
@@ -1,11 +0,10 @@ | ||
import { j as MotionPluginOptions } from './value-ceb5cfd2.js'; | ||
import * as _nuxt_schema from '@nuxt/schema'; | ||
import { Y as ModuleOptions$1 } from './nuxt-b4cb9b59.js'; | ||
import 'vue'; | ||
import '@vueuse/core'; | ||
declare const module: any; | ||
interface ModulePublicRuntimeConfig extends MotionPluginOptions { | ||
interface ModuleOptions extends ModuleOptions$1 { | ||
} | ||
interface ModulePrivateRuntimeConfig extends MotionPluginOptions { | ||
} | ||
declare const _default: _nuxt_schema.NuxtModule<ModuleOptions>; | ||
export { ModulePrivateRuntimeConfig, ModulePublicRuntimeConfig, module as default }; | ||
export { ModuleOptions, _default as default }; |
125
package.json
{ | ||
"name": "@vueuse/motion", | ||
"version": "2.0.0-beta.27", | ||
"type": "module", | ||
"version": "2.0.0-beta.28", | ||
"description": "🤹 Vue Composables putting your components in motion", | ||
"author": "Yaël GUILLOUX <yael.guilloux@gmail.com>", | ||
"license": "MIT", | ||
"homepage": "https://github.com/vueuse/motion#readme", | ||
"repository": "https://github.com/vueuse/motion", | ||
@@ -9,5 +13,2 @@ "bugs": { | ||
}, | ||
"homepage": "https://github.com/vueuse/motion#readme", | ||
"author": "Yaël GUILLOUX <yael.guilloux@gmail.com>", | ||
"license": "MIT", | ||
"keywords": [ | ||
@@ -21,19 +22,23 @@ "vue", | ||
], | ||
"type": "module", | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
"require": "./dist/index.cjs", | ||
"import": "./dist/index.mjs" | ||
}, | ||
"./nuxt": { | ||
"import": "./dist/nuxt.mjs", | ||
"require": "./dist/nuxt.cjs" | ||
"require": "./dist/nuxt.cjs", | ||
"import": "./dist/nuxt.mjs" | ||
} | ||
}, | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"dist/**/*", | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"scripts": { | ||
"build": "unbuild", | ||
"dev": "nr dev:vite", | ||
"dev": "pnpm dev:vite", | ||
"release": "release-it", | ||
@@ -45,27 +50,25 @@ "lint": "eslint --ext .js,.vue,.ts,.tsx .", | ||
"test": "pnpm test:unit && pnpm test:coverage", | ||
"prepare": "nr prepare:nuxt", | ||
"prepare": "pnpm prepare:nuxt", | ||
"__": "__", | ||
"dev:nuxt": "(cd playgrounds/nuxt && nr dev:nuxt)", | ||
"build:nuxt": "(cd playgrounds/nuxt && nr build:nuxt)", | ||
"generate:nuxt": "(cd playgrounds/nuxt && nr preview:nuxt)", | ||
"dev:ssg": "(cd playgrounds/vite-ssg && nr dev:ssg)", | ||
"build:ssg": "(cd playgrounds/vite-ssg && nr build:ssg)", | ||
"preview:ssg": "(cd playgrounds/vite-ssg && nr preview:ssg)", | ||
"dev:vite": "(cd playgrounds/vite && nr dev:vite)", | ||
"build:vite": "(cd playgrounds/vite && nr build:vite)", | ||
"preview:vite": "(cd playgrounds/vite && nr preview:vite)", | ||
"dev:docs": "(cd docs && nr dev:docs)", | ||
"build:docs": "(cd docs && nr build:docs)", | ||
"preview:docs": "(cd docs && nr preview:docs)", | ||
"prepare:nuxt": "(cd playgrounds/nuxt && nr prepare:nuxt)" | ||
"dev:nuxt": "(cd playgrounds/nuxt && pnpm dev:nuxt)", | ||
"build:nuxt": "(cd playgrounds/nuxt && pnpm build:nuxt)", | ||
"generate:nuxt": "(cd playgrounds/nuxt && pnpm preview:nuxt)", | ||
"dev:ssg": "(cd playgrounds/vite-ssg && pnpm dev:ssg)", | ||
"build:ssg": "(cd playgrounds/vite-ssg && pnpm build:ssg)", | ||
"preview:ssg": "(cd playgrounds/vite-ssg && pnpm preview:ssg)", | ||
"dev:vite": "(cd playgrounds/vite && pnpm dev:vite)", | ||
"build:vite": "(cd playgrounds/vite && pnpm build:vite)", | ||
"preview:vite": "(cd playgrounds/vite && pnpm preview:vite)", | ||
"dev:docs": "(cd docs && pnpm dev:docs)", | ||
"build:docs": "(cd docs && pnpm build:docs)", | ||
"preview:docs": "(cd docs && pnpm preview:docs)", | ||
"prepare:nuxt": "(cd playgrounds/nuxt && pnpm prepare:nuxt)" | ||
}, | ||
"files": [ | ||
"dist/**/*", | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"peerDependencies": { | ||
"vue": ">=3.0.0" | ||
}, | ||
"dependencies": { | ||
"@vueuse/core": "^9.11.1", | ||
"@vueuse/shared": "^9.11.1", | ||
"csstype": "^3.1.1", | ||
"@vueuse/core": "^10.1.2", | ||
"@vueuse/shared": "^10.1.2", | ||
"csstype": "^3.1.2", | ||
"framesync": "^6.1.2", | ||
@@ -75,29 +78,25 @@ "popmotion": "^11.0.5", | ||
}, | ||
"peerDependencies": { | ||
"vue": ">=3.0.0" | ||
}, | ||
"optionalDependencies": { | ||
"@nuxt/kit": "^3.1.1" | ||
"@nuxt/kit": "^3.5.1" | ||
}, | ||
"devDependencies": { | ||
"@nuxt/kit": "^3.1.1", | ||
"@antfu/eslint-config": "^0.34.1", | ||
"@antfu/eslint-config": "^0.39.3", | ||
"@nuxt/kit": "^3.5.1", | ||
"@nuxtjs/eslint-config-typescript": "^12.0.0", | ||
"@vitest/coverage-c8": "^0.28.2", | ||
"@vue/test-utils": "^2.2.7", | ||
"@vitest/coverage-c8": "^0.31.1", | ||
"@vue/test-utils": "^2.3.2", | ||
"chokidar": "^3.5.3", | ||
"eslint": "^8.32.0", | ||
"eslint-config-prettier": "^8.6.0", | ||
"eslint": "^8.41.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"eslint-plugin-prettier-vue": "^4.2.0", | ||
"happy-dom": "^8.1.5", | ||
"lint-staged": "^13.1.0", | ||
"prettier": "^2.8.3", | ||
"typescript": "^4.9.4", | ||
"unbuild": "^1.1.1", | ||
"vite": "4.0.4", | ||
"vitest": "^0.28.2", | ||
"vue": "^3.2.45", | ||
"yorkie": "^2.0.0", | ||
"@antfu/ni": "^0.19.0" | ||
"happy-dom": "^9.20.3", | ||
"lint-staged": "^13.2.2", | ||
"prettier": "^2.8.8", | ||
"typescript": "^5.0.4", | ||
"unbuild": "^1.2.1", | ||
"vite": "4.3.8", | ||
"vitest": "^0.31.1", | ||
"vue": "^3.3.4", | ||
"yorkie": "^2.0.0" | ||
}, | ||
@@ -107,10 +106,2 @@ "gitHooks": { | ||
}, | ||
"lint-staged": { | ||
"*.js": [ | ||
"eslint --fix" | ||
], | ||
"*.ts?(x)": [ | ||
"eslint --fix" | ||
] | ||
}, | ||
"pnpm": { | ||
@@ -135,2 +126,10 @@ "peerDependencyRules": { | ||
}, | ||
"lint-staged": { | ||
"*.js": [ | ||
"eslint --fix" | ||
], | ||
"*.ts?(x)": [ | ||
"eslint --fix" | ||
] | ||
}, | ||
"release-it": { | ||
@@ -137,0 +136,0 @@ "hooks": { |
@@ -10,3 +10,3 @@ # 🤹 @vueuse/motion | ||
- 🏎 **Smooth animations** based on [**Popmotion**](https://popmotion.io/) | ||
- 🎮 **Declarative** API inspired from [**Framer Motion**](https://www.framer.com/motion/) | ||
- 🎮 **Declarative** API inspired by [**Framer Motion**](https://www.framer.com/motion/) | ||
- 🚀 **Plug** & **play** with **20+ presets** | ||
@@ -24,3 +24,3 @@ - 🌐 **SSR Ready** | ||
Let's **get started** quick by **installing** the **package** and adding the **plugin**. | ||
Let's **get started** by **installing** the **package** and adding the **plugin**. | ||
@@ -69,3 +69,3 @@ From your **terminal**: | ||
To see more about how to **create** your own **animations** styles, check out [**Transition Properties**](https://motion.vueuse.org/transition-properties). | ||
To see more about how to **create** your own **animation** styles, check out [**Transition Properties**](https://motion.vueuse.org/transition-properties). | ||
@@ -72,0 +72,0 @@ To see more about what are **variants** and how you can **use** them, check out [**Variants**](https://motion.vueuse.org/variants). |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
773950
19
14
12451
+ Added@types/web-bluetooth@0.0.20(transitive)
+ Added@vueuse/core@10.11.1(transitive)
+ Added@vueuse/metadata@10.11.1(transitive)
+ Added@vueuse/shared@10.11.1(transitive)
- Removed@types/web-bluetooth@0.0.16(transitive)
- Removed@vueuse/core@9.13.0(transitive)
- Removed@vueuse/metadata@9.13.0(transitive)
- Removed@vueuse/shared@9.13.0(transitive)
Updated@vueuse/core@^10.1.2
Updated@vueuse/shared@^10.1.2
Updatedcsstype@^3.1.2