forked from oku-ui/motion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "motion",
"type": "module",
"version": "0.3.1",
"packageManager": "pnpm@8.13.0",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm --filter './packages/**' build",
"release": "bumpp --commit --push --tag",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:vue": "vitest --config ./packages/vue/vitest.config.ts",
"prepare": "npx simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "2.6.1",
"@testing-library/dom": "^9.3.3",
"@types/node": "^20.10.6",
"@vitejs/plugin-vue": "^5.0.2",
"@vitest/coverage-v8": "^1.1.1",
"@vue-macros/volar": "^0.18.8",
"@vue/test-utils": "^2.4.3",
"bumpp": "^9.2.1",
"chokidar": "^3.5.3",
"eslint": "^8.56.0",
"jsdom": "^23.0.1",
"lint-staged": "^15.2.0",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"unplugin-vue-macros": "^2.7.7",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.1.1",
"vue": "^3.4.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm eslint . --fix"
}
}