-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.55 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
{
"name": "vue3-router-prefetch",
"type": "module",
"version": "1.9.0",
"homepage": "https://github.com/doom-9/vue3-router-prefetch/blob/main/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/doom-9/vue3-router-prefetch.git"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/lib.d.ts",
"require": "./dist/lib.cjs",
"import": "./dist/lib.js"
},
"./*": "./*"
},
"main": "./dist/lib.js",
"module": "./dist/lib.js",
"types": "./dist/lib.d.ts",
"files": [
"dist"
],
"scripts": {
"postinstall": "npx simple-git-hooks",
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"cypress:open": "cypress open",
"publish": "vue-tsc && vite build && np --no-tests"
},
"peerDependencies": {
"vue": "^3.2.45",
"vue-router": "^4.1.6"
},
"dependencies": {
"vue": "^3.2.45",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.2",
"@types/node": "^18.14.1",
"@vitejs/plugin-vue": "^4.0.0",
"cypress": "^12.7.0",
"eslint": "^8.34.0",
"lint-staged": "^13.1.2",
"np": "^7.6.3",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-dts": "^2.0.2",
"vue-tsc": "^1.0.24"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}