-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.06 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
{
"version": "0.0.5",
"name": "memo-ui",
"files": [
"dist"
],
"description": "An efficient component library built on vue3、ts、vite",
"keywords": [
"vue3",
"ui",
"vue"
],
"main": "./dist/memo-ui.umd.js",
"module": "./dist/memo-ui.es.js",
"types": "./src/index.ts",
"homepage": "https://github.com/Mrxyy/memo-ui",
"bugs": {
"url": "https://github.com/Mrxyy/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Mrxyy/memo-ui"
},
"exports": {
".": {
"import": "./dist/memo-ui.es.js",
"require": "./dist/memo-ui.umd.js"
},
"./style.css": "./dist/style.css",
"./*": "./src/components/*"
},
"scripts": {
"dev": "npm run mount-theme && vite --force --host",
"build-doc": "vite build",
"build": "export target=library&&vite build",
"mount-theme": "pnpm link ./src/theme",
"serve": "vite preview",
"noEmit": "vue-tsc --noEmit",
"lint:js": "eslint --ext \".js,.ts\" --ignore-path .gitignore . --fix",
"lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore --fix",
"prepare": "husky install",
"watch": "npm-watch",
"commitlint": "npx --no-install commitlint --edit $1"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "*",
"quiet": false
}
},
"engines": {
"node": "15.x"
},
"dependencies": {
"@kangc/v-md-editor": "2.3.12",
"@vueuse/head": "^0.6.0",
"bootstrap-icons": "^1.7.2",
"codemirror": "^5.64.0",
"dedent": "^0.7.0",
"highlight.js": "^11.3.1",
"lint-staged": "^11.2.6",
"markdown-it": "^12.3.2",
"postcss-scss": "^4.0.2",
"quill": "^1.3.7",
"vue": "^3.2.23",
"vue-quill-editor": "^3.0.6",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@rollup/plugin-eslint": "^8.0.1",
"@types/node": "^16.11.11",
"@types/tailwindcss": "^2.2.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vitejs/plugin-vue": "^1.10.1",
"@vitejs/plugin-vue-jsx": "^1.3.0",
"@vue/compiler-sfc": "^3.2.23",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"cssnano": "^5.0.13",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-vue": "^7.20.0",
"husky": "^7.0.4",
"npm-watch": "^0.11.0",
"sass": "^1.44.0",
"serve-static": "^1.14.1",
"stylelint": "^13.13.1",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.21.0",
"tailwindcss": "^2.2.19",
"typescript": "^4.5.2",
"vite": "2.6.14",
"vite-plugin-md": "^0.8.0",
"vue-tsc": "^0.0.24"
},
"lint-staged": {
"*.s?css": "npm run lint:style",
"*.vue": "npm run lint:style"
}
}