-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
154 lines (154 loc) · 4.44 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "design-plus",
"version": "0.0.1-alpha.0",
"main": "umd/index.js",
"unpkg": "umd/index.js",
"typings": "types/index.d.ts",
"style": "umd/style.css",
"module": "es/index.js",
"keywords": [
"typescript",
"vue",
"vuejs",
"vue3",
"scss",
"vitepress"
],
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"serve": "vue-cli-service serve",
"build:dts": "esno build/gen-dts.ts",
"build:component": "rollup -c ./build/rollup.config.js",
"build": "rimraf dist && npm run build:component && npm run build:dts",
"commit": "git add .&&git-cz",
"changelog": "standard-version",
"test": "jest",
"coverall": "cat coverage/lcov.info | coveralls",
"stylelint": "stylelint 'packages/**/*.{scss,vue}' --config '.stylelintrc.js' --fix"
},
"dependencies": {
"@vue/compiler-sfc": "^3.2.4",
"@vueuse/core": "^7.1.2",
"core-js": "^3.6.5",
"vue": "^3.2.4",
"vue-demi": "^0.12.1",
"vue-loader": "^16.5.0",
"vue-router": "^4.0.11"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/plugin-transform-classes": "^7.14.2",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.15.6",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^13.1.0",
"@prettier/plugin-pug": "^1.16.5",
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@types/jest": "^27.0.2",
"@types/klaw-sync": "^6.0.1",
"@types/markdown-it": "^12.2.3",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "^4.5.8",
"@vue/cli-service": "^4.5.7",
"@vue/compiler-sfc": "^3.2.6",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.15",
"autoprefixer": "^10.4.0",
"babel-eslint": "^8.1.1",
"babel-plugin-import": "^1.13.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"chalk": "^4.1.2",
"commitizen": "^4.2.3",
"commitlint-config-cz": "^0.13.2",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"escape-html": "^1.0.3",
"eslint": "^6.7.2",
"eslint-plugin-flowtype": "^5.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.6.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^6.2.2",
"esno": "^0.12.1",
"git-cz": "^4.7.6",
"glob": "^7.2.0",
"husky": "^4.3.8",
"jest": "^27.4.3",
"klaw-sync": "^6.0.0",
"lint-staged": "^11.1.2",
"markdown-it": "^12.3.2",
"markdown-it-container": "^3.0.0",
"node-sass": "^7.0.0",
"postcss": "^8.3.11",
"postcss-loader": "^4.3.0",
"postcss-prefix-selector": "^1.12.0",
"prettier": "^2.2.1",
"prismjs": "^1.25.0",
"pug": "^3.0.0",
"pug-plain-loader": "^1.0.0",
"rimraf": "^3.0.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-esbuild": "^4.7.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.44.0",
"sass-loader": "^10.0.3",
"standard-version": "^9.3.1",
"stylelint": "^13.3.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.19.0",
"sucrase": "^3.20.3",
"svg-sprite-loader": "^6.0.9",
"ts-jest": "^27.0.5",
"ts-morph": "^12.0.0",
"typescript": "^4.1.5",
"vite-plugin-inspect": "^0.3.11",
"vite-plugin-sass-dts": "^1.1.20",
"vitepress": "^0.20.1",
"vue-jest": "^5.0.0-alpha.10",
"webpack-bundle-analyzer": "^3.9.0"
},
"author": "fish uncle",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"standard-version": {
"skip": {
"tag": true,
"commit": true,
"bump": true
}
},
"lint-staged": {
"*.{js,ts,css,vue,scss}": "prettier --plugin-search-dir ./node_modules --config .prettierrc --write"
}
}