-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
105 lines (105 loc) · 2.92 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
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "vue3-lazy-hydration",
"version": "1.2.1",
"description": "Lazy Hydration for Vue 3 SSR",
"keywords": [
"vue",
"vue3",
"lazy",
"hydration",
"ssr"
],
"author": "freddy38510 <freddyescobar@hotmail.fr>",
"homepage": "https://github.com/freddy38510/vue3-lazy-hydration",
"repository": {
"type": "git",
"url": "https://github.com/freddy38510/vue3-lazy-hydration"
},
"bugs": {
"url": "https://github.com/freddy38510/vue3-lazy-hydration/issues"
},
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"main": "./dist/vue3-lazy-hydration.cjs",
"module": "./dist/esm/vue3-lazy-hydration.mjs",
"exports": {
".": {
"types": "./dist/vue3-lazy-hydration.d.ts",
"import": "./dist/esm/vue3-lazy-hydration.mjs",
"require": "./dist/vue3-lazy-hydration.cjs"
}
},
"types": "./dist/vue3-lazy-hydration.d.ts",
"engines": {
"node": ">=14.6"
},
"sideEffects": false,
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"build": "rimraf dist && vite build && pnpm build-temp-types ",
"build-temp-types": "tsc --emitDeclarationOnly -p ./tsconfig.types.json && api-extractor run && rimraf temp",
"dev": "rimraf dist && vite",
"test:unit": "vitest",
"coverage": "vitest run --coverage",
"format": "prettier --write --cache .",
"lint": "eslint --cache ."
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@microsoft/api-extractor": "7.33.6",
"@rushstack/eslint-patch": "1.2.0",
"@types/node": "18.11.9",
"@vitejs/plugin-vue": "3.2.0",
"@vitest/coverage-c8": "^0.25.0",
"@vitest/ui": "0.25.2",
"@vue/eslint-config-airbnb-with-typescript": "7.0.0",
"@vue/server-renderer": "3.2.45",
"@vue/test-utils": "2.2.3",
"@vue/tsconfig": "0.1.3",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-define-config": "1.12.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-vitest-globals": "1.2.0",
"eslint-plugin-vue": "9.7.0",
"happy-dom": "7.7.0",
"lint-staged": "13.0.3",
"pnpm": "7.33.4",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"sass": "1.56.1",
"simple-git-hooks": "2.8.1",
"typescript": "4.9.3",
"vite": "3.2.7",
"vitest": "0.25.2",
"vue": "3.2.45",
"vue-router": "4.1.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged --concurrent false",
"prepare-commit-msg": "cat $1 | npx commitlint -q || (exec < /dev/tty && node_modules/.bin/cz --hook || true)",
"commit-msg": "npx --no -- commitlint --edit $1"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"src/**/*.ts": [
"eslint --cache --fix"
]
},
"packageManager": "pnpm@7.16.1"
}