-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
{
"name": "vue-motion",
"version": "0.8.0",
"private": true,
"packageManager": "[email protected]+sha1.8bfdb6d72b4d5fdf87d21d27f2bfbe2b21dd2629",
"description": "",
"author": "",
"license": "MIT",
"homepage": "https://github.com/unovue/motion-vue",
"keywords": [
"vue",
"motion",
"motionone",
"framer-motion"
],
"main": "index.js",
"scripts": {
"dev:play": "pnpm --filter './playground/nuxt' dev",
"dev": "pnpm --filter './packages/motion' dev",
"build": "pnpm --filter './packages/**' build",
"test": "pnpm --filter './packages/motion' test",
"prepare": "pnpm simple-git-hooks",
"docs:install": "pnpm --filter docs install",
"docs:dev": "pnpm --filter docs dev",
"docs:build": "pnpm --filter docs build",
"docs:gen": "pnpm --filter docs docs:gen",
"docs:contributors": "pnpm --filter docs docs:contributors",
"lint-staged": "lint-staged",
"bumpp": "bumpp package.json packages/*/package.json docs/package.json",
"pub:release": "pnpm --filter './packages/motion' pub:release"
},
"dependencies": {
"vite": "^5.4.8",
"vue": "^3.4.38"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@vue/tsconfig": "^0.5.1",
"bumpp": "^9.8.1",
"eslint": "^9.9.1",
"lint-staged": "^15.2.9",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit ${1}"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix"
]
}
}