forked from vueuse/motion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@vueuse/motion",
"version": "2.0.0-beta.18",
"description": "🤹 Vue Composables putting your components in motion",
"repository": "https://github.com/vueuse/motion",
"bugs": {
"url": "https://github.com/vueuse/motion/issues"
},
"homepage": "https://github.com/vueuse/motion#readme",
"author": "Yaël GUILLOUX <yael.guilloux@gmail.com>",
"license": "MIT",
"keywords": [
"vue",
"hook",
"motion",
"animation",
"v-motion",
"popmotion-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"
},
"./nuxt": {
"import": "./dist/nuxt.mjs",
"require": "./dist/nuxt.cjs"
}
},
"scripts": {
"build": "unbuild",
"dev": "jiti scripts/watch.ts --cache",
"lint": "eslint --ext .js,.vue,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.vue,.ts,.tsx . --fix",
"test:types": "tsc --build tsconfig.json",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage",
"test": "pnpm test:types && pnpm test:unit && pnpm test:coverage",
"dev:docs": "vitepress dev docs",
"build:docs": "vitepress build docs",
"serve:docs": "vitepress serve docs",
"publish:ci": "jiti scripts/publish.ts",
"release": "jiti scripts/release.ts && git push --follow-tags",
"dev:demo": "vite",
"build:demo": "vite build",
"serve:demo": "vite serve demo/dist",
"prepare:nuxt": "nuxt-module-build --stub && nuxi prepare playground",
"build:nuxt": "nuxt-module-build",
"dev:nuxt": "nuxi dev nuxt-playground",
"build:nuxt:playground": "nuxi build playground"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"dependencies": {
"@vueuse/core": "^8.2.3",
"@vueuse/shared": "^8.2.3",
"csstype": "^3.0.11",
"framesync": "^6.1.0",
"popmotion": "^11.0.3",
"style-value-types": "^5.1.0",
"vue-demi": "*"
},
"peerDependencies": {
"@nuxt/kit": "npm:@nuxt/kit-edge@latest",
"@vue/composition-api": "^1.4.1",
"vue": "^2.0.0 || >=3.0.0-rc.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@antfu/eslint-config": "^0.19.2",
"@nuxt/module-builder": "latest",
"@types/prismjs": "^1.26.0",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/server-renderer": "^3.2.31",
"@vue/test-utils": "^2.0.0-rc.17",
"@vuedx/typecheck": "^0.7.4",
"@vuedx/typescript-plugin-vue": "^0.7.4",
"bumpp": "^7.1.1",
"c8": "^7.11.0",
"chokidar": "^3.5.3",
"eslint": "^8.12.0",
"happy-dom": "^2.55.0",
"lint-staged": "^12.3.7",
"nuxt3": "latest",
"prism-theme-vars": "^0.2.2",
"prismjs": "^1.27.0",
"typescript": "^4.6.3",
"unbuild": "^0.7.2",
"upath": "^2.0.1",
"vite": "2.9.1",
"vite-plugin-windicss": "^1.8.3",
"vitepress": "^0.22.3",
"vitest": "^0.8.2",
"vue": "^3.2.31",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.ts?(x)": [
"eslint --fix"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"vitepress"
]
}
}
}