-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
76 lines (76 loc) · 1.87 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": "vue-page-stack",
"version": "3.2.0",
"author": "hezf",
"type": "module",
"files": [
"dist"
],
"types": "./index.d.ts",
"web-types": "./web-types.json",
"main": "./dist/vue-page-stack.umd.js",
"module": "./dist/vue-page-stack.es.js",
"private": false,
"exports": {
".": {
"import": "./dist/vue-page-stack.es.js",
"require": "./dist/vue-page-stack.umd.js"
}
},
"keywords": [
"vue3",
"vue-router",
"stack",
"navigation",
"manager",
"page"
],
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.mjs --ignore-path .gitignore",
"lint-fix": "eslint . --ext .vue,.js,.jsx,.mjs --fix --ignore-path .gitignore",
"prepare": "husky install"
},
"lint-staged": {
"*.{vue,js,jsx,tsx}": "eslint . --ext .vue,.js,.jsx,.mjs --ignore-path .gitignore"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.cjs"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hezhongfeng/vue-page-stack.git"
},
"bugs": {
"url": "https://github.com/hezhongfeng/vue-page-stack/issues"
},
"homepage": "https://github.com/hezhongfeng/vue-page-stack#readme",
"dependencies": {
"@vue/shared": "^3.4.19",
"detect-browser-navigation-in-vue-router": "1.1.0"
},
"peerDependencies": {
"vue": "^3.3.4",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"commitizen": "^4.3.0",
"commitlint-config-cz": "^0.13.3",
"commitlint-config-git-commit-emoji": "^1.0.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.40.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"vite": "^5.1.3"
}
}