qy-ui-for-ls 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/package.json +74 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "qy-ui-for-ls",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "vite",
|
|
7
|
+
"build": "vite build && node ./src/scripts/buildType.js",
|
|
8
|
+
"build:checkTs": "vue-tsc && vite build && node ./src/scripts/buildType.js",
|
|
9
|
+
"preview": "vite preview",
|
|
10
|
+
"type": "node ./src/scripts/buildType.js",
|
|
11
|
+
"test": "vitest",
|
|
12
|
+
"coverage": "vitest run --coverage",
|
|
13
|
+
"docs:dev": "vitepress dev docs",
|
|
14
|
+
"docs:build": "vitepress build docs",
|
|
15
|
+
"docs:serve": "vitepress serve docs"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@wangeditor/editor": "^5.1.23",
|
|
19
|
+
"@wangeditor/editor-for-vue": "^5.1.12",
|
|
20
|
+
"@wangeditor/plugin-ctrl-enter": "^1.1.2",
|
|
21
|
+
"@wangeditor/plugin-formula": "^1.0.11",
|
|
22
|
+
"@wangeditor/plugin-md": "^1.0.0",
|
|
23
|
+
"@wangeditor/plugin-mention": "^1.0.0",
|
|
24
|
+
"element-plus": "^2.5.6",
|
|
25
|
+
"escape-html": "^1.0.3",
|
|
26
|
+
"flv.js": "^1.6.2",
|
|
27
|
+
"hls.js": "^1.5.7",
|
|
28
|
+
"katex": "^0.15.2",
|
|
29
|
+
"path": "^0.12.7",
|
|
30
|
+
"vue": "^3.3.11"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@types/lodash-es": "^4.17.12",
|
|
34
|
+
"@types/node": "^20.11.25",
|
|
35
|
+
"@vitejs/plugin-vue": "^4.5.2",
|
|
36
|
+
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
|
37
|
+
"chalk": "^5.2.0",
|
|
38
|
+
"consola": "^3.1.0",
|
|
39
|
+
"element-plus": "^2.5.6",
|
|
40
|
+
"happy-dom": "^13.3.8",
|
|
41
|
+
"lodash-es": "^4.17.21",
|
|
42
|
+
"markdown-it": "^13.0.1",
|
|
43
|
+
"markdown-it-container": "^3.0.0",
|
|
44
|
+
"prismjs": "^1.29.0",
|
|
45
|
+
"rollup-plugin-delete": "^2.0.0",
|
|
46
|
+
"sass": "^1.69.7",
|
|
47
|
+
"sortablejs": "^1.15.2",
|
|
48
|
+
"typescript": "^5.2.2",
|
|
49
|
+
"unplugin-auto-import": "^0.17.5",
|
|
50
|
+
"unplugin-vue-components": "^0.26.0",
|
|
51
|
+
"vite": "^5.0.8",
|
|
52
|
+
"vite-plugin-dts": "^3.7.2",
|
|
53
|
+
"vite-plugin-vue-setup-extend": "^0.4.0",
|
|
54
|
+
"vitepress": "1.0.0-rc.43",
|
|
55
|
+
"vitest": "^1.3.0",
|
|
56
|
+
"vue-tsc": "^1.8.25"
|
|
57
|
+
},
|
|
58
|
+
"files": [
|
|
59
|
+
"dist"
|
|
60
|
+
],
|
|
61
|
+
"main": "./dist/qy-ui-plus.umd.js",
|
|
62
|
+
"module": "./dist/qy-ui-plus.es.js",
|
|
63
|
+
"types": "dist/index.d.ts",
|
|
64
|
+
"exports": {
|
|
65
|
+
".": {
|
|
66
|
+
"import": "./dist/qy-ui-plus.es.js"
|
|
67
|
+
},
|
|
68
|
+
"./plugins": {
|
|
69
|
+
"import": "./dist/qy-ui-plus.es2.js"
|
|
70
|
+
},
|
|
71
|
+
"./dist/style.css": "./dist/style.css"
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
}
|