-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.32 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
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "vuetify-pro-layout",
"version": "2.3.0",
"license": "MIT",
"description": "easy use vuetify layout",
"private": false,
"author": "yikoyu<2282373181@qq.com>",
"repository": {
"type": "git",
"url": "https://github.com/yikoyu/vuetify-pro-layout"
},
"homepage": "https://yikoyu.github.io/vuetify-pro-layout/",
"keywords": [
"vue",
"typescript",
"vuetify",
"layout"
],
"main": "./lib/vuetify-pro-layout.umd.js",
"module": "./lib/vuetify-pro-layout.mjs",
"exports": {
".": {
"import": "./lib/vuetify-pro-layout.mjs",
"require": "./lib/vuetify-pro-layout.umd.js"
},
"./style.css": {
"import": "./lib/style.css",
"require": "./lib/style.css"
}
},
"types": "./lib/index.d.ts",
"files": [
"lib",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite --config vite-example.config.ts",
"build:lib": "pnpm check:types && vite build",
"build:examples": "pnpm build:lib && pnpm check:types && vite build --config vite-example.config.ts",
"lint": "eslint {src,examples}/**/*.{js,ts,tsx,vue}",
"lint:fix": "eslint {src,examples}/**/*.{js,ts,tsx,vue} --fix",
"git-commit": "git-cz",
"check:types": "vue-tsc --noEmit --skipLibCheck",
"push": "pnpm build:lib && pnpm publish --no-git-checks --registry https://registry.npmjs.org/",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"{src,examples}/**/*.{js,jsx,ts,tsx,vue}": [
"eslint --fix"
]
},
"engines": {
"node": ">=14",
"pnpm": ">=7"
},
"peerDependencies": {
"@vue/composition-api": "^1.1.0",
"vue": "^2.6.0",
"vuetify": "^2.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@commitlint/cz-commitlint": "^17.5.0",
"@mdi/js": "^7.2.96",
"@rushstack/eslint-patch": "^1.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.throttle": "^4.1.7",
"@vitejs/plugin-vue2": "^1.1.2",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/runtime-dom": "^3.3.4",
"commitizen": "^4.3.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-define-config": "^1.20.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.11.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"lodash.clonedeep": "^4.5.0",
"lodash.throttle": "^4.1.1",
"prettier": "^2.8.8",
"sass": "1.32.13",
"semantic-release": "^19.0.5",
"typescript": "^4.9.5",
"unplugin-vue-components": "^0.24.1",
"vite": "^3.2.6",
"vite-plugin-dts": "^1.7.3",
"vite-plugin-eslint": "^1.8.1",
"vue": "^2.7.8",
"vue-router": "^3.5.4",
"vue-tsc": "^0.40.13",
"vuetify": "^2.6.15"
},
"dependencies": {
"vue-demi": "^0.14.5"
}
}