-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.84 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
93
94
95
96
97
98
99
100
101
{
"name": "h-design",
"version": "0.4.6",
"private": false,
"main": "lib/h-design.js",
"style": "lib/styles/index.css",
"types": "lib/typings/h-design.d.ts",
"files": [
"lib",
"packages"
],
"publisher": "xingheng@tom.com",
"keywords": [
"vuejs",
"vue3",
"ui组件"
],
"author": "xingheng",
"license": "MIT",
"repository": {
"type": "github",
"url": "https://github.com/HunterXing/h-design.git"
},
"homepage": "https://github.com/HunterXing/h-design",
"scripts": {
"installall": "npm install && cd docs/ && npm install",
"serve": "vue-cli-service serve",
"lib": "rm -rf es && rm -rf lib && rollup -c && npm run lib:css && npm run log",
"lib:css": "gulp build",
"build": "vue-cli-service build",
"build:lib": "rollup -c && npm run lib:css",
"lint": "vue-cli-service lint",
"docs:dev": "cd docs/ && npm run docs:dev",
"docs:build": "cd docs/ && npm run docs:build",
"docs:deploy": "cd docs/ && npm run docs:deploy",
"deploy": "npm run lib && npm publish && cd docs/ && npm run docs:deploy",
"log": "gulp log"
},
"dependencies": {
"core-js": "^3.6.5",
"vue": "^3.2.0"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"babel-eslint": "^10.1.0",
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"esbuild": "^0.17.19",
"prettier": "^2.2.1",
"rollup": "^2.57.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-esbuild": "^4.5.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-vue": "6.0.0",
"sass": "^1.51.0",
"scp2": "^0.5.0",
"ts-node": "^10.7.0",
"tslib": "^1.14.1",
"typescript": "^4.6.4",
"uglifyjs-webpack-plugin": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged & jest -u"
}
},
"lint-staged": {
"*.{.ts,.js}": [
"eslint",
"git add"
]
}
}