-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.51 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.51 KB
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
{
"name": "pro-components",
"version": "1.0.0",
"private": true,
"description": "vue2 element-ui pro components",
"workspaces": [
"packages/*",
"play",
"docs"
],
"main": "index.js",
"scripts": {
"gen": "bash ./scripts/gc.sh",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wayejs/pro-components.git"
},
"keywords": [
"vue2",
"element-ui"
],
"author": "lynzz",
"license": "MIT",
"bugs": {
"url": "https://github.com/wayejs/pro-components/issues"
},
"homepage": "https://github.com/wayejs/pro-components#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx}": "eslint --fix"
},
"peerDependencies": {
"element-ui": "^2",
"vue": "^2"
},
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.16.1",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@pnpm/find-workspace-packages": "^3.1.13",
"@pnpm/logger": "^4.0.0",
"@pnpm/types": "^7.4.0",
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.2.5",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
"@vue/babel-preset-jsx": "^1.2.4",
"@vue/eslint-config-standard": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"element-ui": "^2.15.6",
"esbuild": "~0.13.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-define-config": "^1.1.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.18.0",
"husky": "^7.0.2",
"jest": "^26.6.3",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.57.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-esbuild": "^4.5.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.42.1",
"sucrase": "^3.20.1",
"through2": "^4.0.2",
"ts-jest": "^26.5.6",
"ts-morph": "^12.0.0",
"vue": "~2.6.14"
},
"dependencies": {
"@vue/composition-api": "^1.4.1"
}
}