-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 944 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 944 Bytes
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
{
"name": "open-micro",
"version": "1.0.0",
"description": "开箱即用的 qiankun 微前端企业级脚手架,基于 Vue3 + Vite 技术栈。",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint . --ext .vue,.js,.ts --fix",
"format": "prettier --write ."
},
"lint-staged": {
"*.{vue,js,ts,json,css,md}": [
"prettier --write",
"eslint --fix"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.1.0",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.4.0",
"husky": "^8.0.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1"
}
}