-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.67 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
{
"name": "hero-motion",
"version": "0.5.2",
"packageManager": "pnpm@9.15.0",
"description": "A shared layout animations for vue like framer motion.",
"author": "zekun.jin",
"license": "MIT",
"homepage": "https://github.com/tmg0/hero-motion#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tmg0/hero-motion.git"
},
"bugs": {
"url": "https://github.com/tmg0/hero-motion/issues"
},
"keywords": [
"animation",
"vue",
"framer",
"motion",
"vueuse"
],
"exports": {
".": {
"types": "./packages/core/dist/index.d.ts",
"import": "./packages/core/dist/index.js",
"require": "./packages/core/dist/index.cjs"
},
"./nuxt": {
"types": "./packages/nuxt/dist/types.d.ts",
"import": "./packages/nuxt/dist/module.mjs",
"require": "./packages/nuxt/dist/module.cjs"
}
},
"files": [
"packages/core/dist",
"packages/nuxt/dist"
],
"scripts": {
"dev": "pnpm --filter @hero-motion/* dev",
"play": "pnpm play:vite",
"play:vite": "cd playgrounds/vite && pnpm dev",
"play:nuxt": "cd playgrounds/nuxt && pnpm dev",
"build": "pnpm --filter @hero-motion/* build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest"
},
"peerDependencies": {
"@vueuse/motion": ">=2.0.0",
"vue": ">=3.0.0"
},
"dependencies": {
"@vueuse/core": "^12.0.0",
"defu": "^6.1.4",
"destr": "^2.0.3",
"scule": "^1.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.16.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"vue": "^3.5.13"
}
}