-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.07 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
{
"name": "beautiful-vue-use",
"version": "0.0.6",
"author": "yaxingson <[email protected]>",
"description": "a collection of beautiful vue composable utilities",
"keywords": [
"vue",
"composable",
"use"
],
"packageManager": "[email protected]",
"homepage": "https://github.com/yaxingson/beautiful-vue-use",
"repository": {
"type": "git",
"url": "[email protected]:yaxingson/beautiful-vue-use.git"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {},
"scripts": {
"prepare": "husky",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build",
"build": "node ./scripts/build.js",
"test": "vitest --run --coverage",
"test:ui": "vitest --ui",
"release": "",
"lint": "",
"preview": "vite",
"preview:build":"vite build"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.9.0",
"@vitejs/plugin-vue": "^5.2.0",
"@vitest/coverage-v8": "2.1.5",
"@vitest/ui": "2.1.5",
"@vue/compiler-sfc": "^3.5.13",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.2.0",
"husky": "^9.0.11",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"markdownlint": "^0.36.1",
"prettier": "^3.2.5",
"rollup": "^4.26.0",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.8.1",
"typescript": "^5.4.5",
"vite": "^6.0.2",
"vitepress": "^1.5.0",
"vitest": "^2.1.5",
"vue-router": "^4.5.0"
},
"dependencies": {
"@beautiful-vue-use/animate": "workspace:*",
"@beautiful-vue-use/effect": "workspace:*",
"@beautiful-vue-use/lifecycle": "workspace:*",
"@beautiful-vue-use/miscellaneous": "workspace:*",
"@beautiful-vue-use/sensors": "workspace:*",
"@beautiful-vue-use/state": "workspace:*",
"@beautiful-vue-use/ui": "workspace:*",
"vue": "^3.5.12"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix"
]
},
"license": "MIT"
}