-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.43 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@vueposu/monorepo",
"private": true,
"version": "0.4.5",
"packageManager": "pnpm@7.0.0",
"author": "Awesome Creators <awesomeweb@hotmail.com> (https://github.com/Awesome-Creators)",
"description": "A hooks library based on Vue Composition-API",
"license": "MIT",
"homepage": "https://github.com/Awesome-Creators/vueposu#readme",
"scripts": {
"clean": "rimraf dist types packages/*/dist",
"build": "esno ./scripts/build.ts",
"build:types": "tsc",
"format": "prettier --write \"src/**/*.{ts,vue,tsx}\" \"test/**/*.{ts,vue,tsx}\" --vue-indent-script-and-styl",
"format:dist": "prettier --write \"dist/**/*.{js,d.ts}\"",
"push-tag": "esno ./scripts/push-tag.ts",
"publish:ci": "esno ./scripts/publish.ts",
"test": "vitest --run",
"test:ui": "vitest -w --ui",
"coverage": "vitest run --coverage",
"coverage:open": "npm run coverage && open ./coverage/index.html",
"docker:start": "docker run -it -v $(pwd):/app -w /app node bash"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.33.7",
"@sinonjs/fake-timers": "^9.1.2",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.45",
"@types/sinonjs__fake-timers": "^8.1.2",
"@vitest/ui": "^0.12.10",
"@vue/test-utils": "2.0.0-rc.21",
"c8": "^7.12.0",
"chalk": "^5.2.0",
"clear": "^0.1.0",
"cross-env": "^7.0.3",
"esbuild-register": "^3.4.2",
"esno": "^0.14.1",
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"husky": "^8.0.3",
"jsdom": "^19.0.0",
"lint-staged": "^12.5.0",
"lodash-es": "^4.17.21",
"minimist": "^1.2.7",
"ora": "^6.1.2",
"prettier": "^2.8.2",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"semver": "^7.3.8",
"typescript": "^4.9.4",
"vite": "^2.9.15",
"vitepress": "^0.22.4",
"vitest": "^0.12.10",
"vue": "^3.2.45",
"vue-demi": "^0.12.5"
},
"husky": {
"hooks": {
"precommit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,tsx,vue}": [
"npm run format"
]
},
"keywords": [
"vueposu",
"vue",
"hook",
"hooks",
"use",
"usehook",
"usehooks",
"use-hook",
"use-hooks",
"vue use",
"vue-use",
"vue hook",
"vue-hook",
"vue hooks",
"vue-hooks",
"composition api",
"composition-api",
"vue-composition-api",
"vue composition api",
"swr",
"vue swr",
"vue-swr"
]
}