-
Notifications
You must be signed in to change notification settings - Fork 215
/
package.json
79 lines (79 loc) · 2.01 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
{
"name": "vue-antd-pro-components-monorepo",
"version": "1.0.0",
"private": true,
"description": "",
"engines": {
"node": ">=12.2.0"
},
"homepage": "https://sunshineLixun.github.io/pro-components",
"scripts": {
"clean": "rimraf -rf packages/*/{node_modules,dist,es,lib} && rimraf node_modules",
"commit": "git-cz",
"build": "pnpm run build --filter ./packages",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "TIMING=1 eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"preinstall": "npx only-allow pnpm",
"dev": "pnpm --filter \"site\" dev",
"build:docs": "pnpm --filter \"./site\" build"
},
"keywords": [
"antd",
"vue",
"ant-design-vue",
"pro-components",
"pro-layout",
"pro-form"
],
"author": "Sendya",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vueComponent/pro-components"
},
"contributors": [
"Sendya <[email protected]>",
"tangjinzhou <[email protected]>"
],
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.3",
"@types/jsdom": "^16.2.14",
"@types/node": "^16.11.27",
"@vitejs/plugin-vue": "^2.3.1",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-rc.20",
"@vue/tsconfig": "^0.1.3",
"ant-design-vue": "^3.2.15",
"commitizen": "^4.2.5",
"eslint": "^8.13.0",
"eslint-plugin-vue": "^8.6.0",
"gh-pages": "^4.0.0",
"jsdom": "^19.0.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"typescript": "~4.5.5",
"vite": "^2.9.14",
"vitest": "^0.27.2",
"vue": "^3.2.45",
"vue-tsc": "^1.0.24"
},
"lint-staged": {
"*.{js,ts,vue,json}": [
"pnpm lint"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}