-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.34 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
{
"name": "@kalu5/vue3-hooks",
"type": "module",
"version": "1.0.2",
"private": false,
"description": "This is vue3 hooks utils",
"author": "lujialong",
"license": "ISC",
"repository": "https://github.com/kalu5/vue3-hooks",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"provenance": "true",
"access": "public"
},
"keywords": [
"vue3",
"hooks"
],
"main": "dist/index.js",
"files": [
"dist/",
"readme.md"
],
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "rollup -c",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"dependencies": {
"vue": "^3.4.21"
},
"devDependencies": {
"@antfu/eslint-config": "^2.12.2",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^9.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"rollup": "^4.14.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"lint-staged": {
"*.ts": "eslint . --fix"
}
}