forked from ravenq/markdown-it-vue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.84 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
{
"name": "markdown-it-vue",
"version": "1.1.7",
"private": false,
"description": "The vue3.0 lib for markdown-it",
"author": {
"name": "yauzn",
"e-mail": "[email protected]"
},
"keywords": [
"markdown",
"markdown-it",
"markdown-it-plugin",
"vue",
"markdown-it-vue",
"vue3.0"
],
"files": [
"dist",
"doc",
"src",
"types"
],
"typings": "types/index.d.ts",
"scripts": {
"dev": "vue-cli-service serve ./example/main.js",
"build": "npm run build:lib && npm run build:light && npm run build:example",
"lint": "vue-cli-service lint",
"build:example": "node --max_old_space_size=8192 node_modules/@vue/cli-service/bin/vue-cli-service.js build --dest example/dist ./example/main.js",
"build:lib": "node --max_old_space_size=8192 node_modules/@vue/cli-service/bin/vue-cli-service.js build --target lib ./src/index.js",
"build:light": "node --max_old_space_size=8192 node_modules/@vue/cli-service/bin/vue-cli-service.js build --target lib --name markdown-it-vue-light --no-clean ./src/index-light.js"
},
"main": "dist/markdown-it-vue.umd.min.js",
"dependencies": {
"@iktakahiro/markdown-it-katex": "^4.0.1",
"core-js": "^3.6.5",
"echarts": "^5.1.0",
"flowchart.js": "^1.15.0",
"font-awesome-icon-chars": "^2.6.0",
"github-markdown-css": "^4.0.0",
"highlight.js": "^10.7.2",
"markdown-it": "^12.0.6",
"markdown-it-abbr": "^1.0.4",
"markdown-it-container": "^3.0.0",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-github-toc": "^3.2.4",
"markdown-it-ins": "^3.0.1",
"markdown-it-katex": "^2.0.3",
"markdown-it-latex": "^0.2.0",
"markdown-it-mark": "^3.0.1",
"markdown-it-regex": "^0.2.0",
"markdown-it-source-map": "^0.1.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-toc-and-anchor": "^4.2.0",
"mermaid": "^8.9.2",
"vue": "^3.0.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.9",
"@vue/cli-plugin-eslint": "~4.5.9",
"@vue/cli-service": "~4.5.9",
"@vue/compiler-sfc": "^3.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"bugs": {
"url": "https://github.com/ravenq/markdown-it-vueissues"
},
"homepage": "https://github.com/ravenq/markdown-it-vue",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ravenq/markdown-it-vue.git"
}
}