-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
136 lines (136 loc) · 3.87 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
127
128
129
130
131
132
133
134
135
136
{
"name": "@vueuse/motion",
"type": "module",
"version": "2.2.6",
"packageManager": "[email protected]+sha512.b051a32c7e695833b84926d3b29b8cca57254b589f0649d899c6e9d0edb670b91ec7e2a43459bae73759bb5ce619c3266f116bf931ce22d1ef1759a7e45aa96f",
"description": "🤹 Vue Composables putting your components in motion",
"author": "Yaël GUILLOUX <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/vueuse/motion#readme",
"repository": "https://github.com/vueuse/motion",
"bugs": {
"url": "https://github.com/vueuse/motion/issues"
},
"keywords": [
"vue",
"hook",
"motion",
"animation",
"v-motion",
"popmotion-vue"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./nuxt": {
"import": "./dist/nuxt/module.mjs",
"require": "./dist/nuxt/module.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"build": "unbuild && pnpm build:nuxt-module",
"build:nuxt-module": "nuxt-module-build build ./src/nuxt --outDir ../../dist/nuxt",
"dev": "pnpm dev:vite",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage",
"test": "pnpm test:unit && pnpm test:coverage",
"prepare": "pnpm prepare:nuxt && pnpm prepare:docs",
"prepack": "pnpm build",
"release": "bumpp --commit \"release: v%s\" --push --tag",
"changelog": "gh-changelogen --repo=vueuse/motion",
"__": "__",
"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)",
"prepare:docs": "(cd docs && pnpm prepare:docs)"
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"dependencies": {
"@vueuse/core": "^10.10.0",
"@vueuse/shared": "^10.10.0",
"csstype": "^3.1.3",
"framesync": "^6.1.2",
"popmotion": "^11.0.5",
"style-value-types": "^5.1.2"
},
"optionalDependencies": {
"@nuxt/kit": "^3.13.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.19.1",
"@nuxt/kit": "^3.13.0",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.13.0",
"@vitest/coverage-v8": "^1.6.0",
"@vue/test-utils": "^2.4.6",
"bumpp": "^9.5.2",
"changelogithub": "^0.13.10",
"chokidar": "^3.6.0",
"eslint": "^9.3.0",
"gh-changelogen": "^0.2.8",
"happy-dom": "^14.12.0",
"jiti": "^1.21.6",
"lint-staged": "^15.2.5",
"nuxt": "^3.13.0",
"pkg-pr-new": "^0.0.20",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vite": "5.2.12",
"vitest": "^1.6.0",
"vue": "^3.4.38",
"yorkie": "^2.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@types/react",
"react",
"react-dom",
"webpack",
"postcss",
"tailwindcss",
"vue",
"axios"
],
"allowedVersions": {
"axios": "^0.25.0",
"vite": "^4.0.0"
}
}
}
}