-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "simple-m-editor",
"version": "3.0.0-beta.0",
"main": "dist/vue-next-m-editor.umd.js",
"module": "vue-next-m-editor.mjs",
"unpkg": "dist/vue-next-m-editor.umd.js",
"browser": {
"./sfc": "src/components/index.tsx"
},
"types": "dist/src/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"gh-pages": "vite build --mode gh-pages",
"preview": "vite preview"
},
"files": [
"dist"
],
"dependencies": {
"@vitejs/plugin-vue": "^4.3.4",
"highlight.js": "^11.7.0",
"lodash-es": "^4.17.21",
"marked": "^7.0.5",
"marked-highlight": "^2.0.5"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.3",
"@rushstack/eslint-patch": "^1.3.3",
"@types/highlightjs": "^9.12.2",
"@types/lodash-es": "^4.17.5",
"@types/marked": "^5.0.1",
"@types/node": "^18.11.18",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"sass": "^1.42.1",
"tslib": "^2.3.0",
"typescript": "^4.4.3",
"vite": "^4.1.1",
"vue": "^3.3.4"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"engines": {
"node": ">=16",
"npm": ">=6"
}
}