-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.02 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
{
"name": "xl-ui",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [
"vue component",
"vue3 component",
"vite"
],
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
"dev": "vite --open --force",
"doc:build": "vite build",
"tem": "node scripts/template",
"generate:css": "vite build --config vite.config.build.css.ts",
"build:libs:all": "vite build --config vite.config.build.ts && node scripts/generate-themes && vite build --config vite.config.build.css.ts && npm run build:locale && npm run generate:pck",
"build:libs:json": "node scripts/component-json",
"build:locale": "vite build --config vite.config.build.locale.ts",
"build:libs:components": "vite build --config vite.config.build.disperse.ts && node scripts/generate-themes && vite build --config vite.config.build.css.ts && npm run build:locale && npm run generate:pck",
"generate:files": "node scripts/generate-ui.js",
"generate:pck": "node scripts/generate-package.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/missxiaolin/vue3-ui.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/missxiaolin/vue3-ui/issues"
},
"homepage": "https://github.com/missxiaolin/vue3-ui#readme",
"dependencies": {
"@popperjs/core": "^2.10.2",
"@vueuse/core": "^7.1.2",
"dayjs": "^1.11.9",
"hls.js": "^1.1.5",
"line-reader": "^0.4.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"lodash-unified": "^1.0.2",
"sass": "^1.49.0",
"vue": "^3.2.19",
"vue-clipboard3": "^2.0.0",
"vue-router": "^4.0.11"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/lodash": "^4.14.195",
"@types/lodash-es": "^4.17.8",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"@vitejs/plugin-legacy": "^1.4.0",
"@vitejs/plugin-vue": "^1.2.2",
"@vitejs/plugin-vue-jsx": "^1.2.0",
"@vue/eslint-config-typescript": "^7.0.0",
"async-validator": "^4.0.7",
"autoprefixer": "^10.3.4",
"linebyline": "^1.3.0",
"typescript": "^4.1.5",
"vite": "^2.3.4",
"vite-plugin-md": "^0.11.0",
"vite-plugin-vuedoc": "^3.1.3",
"vue-jest": "^5.0.0-alpha.7"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/typescript/recommended",
"@vue/prettier",
"@vue/prettier/@typescript-eslint"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"vue/no-unused-components": "off",
"no-debugger": "off"
}
},
"lint-staged": {
"*.md": "prettier --write",
"*.{ts,tsx,js,vue,scss}": "prettier --write"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}