-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
96 lines (96 loc) · 2.96 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
{
"name": "@jhuix/showdowns",
"version": "0.6.7",
"description": "A lib that make markdown to html with some extensions of showdown.js.",
"main": "dist/showdowns.min.js",
"browser": "dist/showdowns.min.js",
"module": "dist/showdowns.core.min.js",
"unpkg": "dist/showdowns.min.js",
"style": "dist/showdowns.min.css",
"scripts": {
"build": "npm run build:release && npm run build:umd && npm run build:cjs && npm run build:demo",
"build:umd": "rollup -c --bundleConfigAsCjs",
"build:umd:min": "rollup -c --bundleConfigAsCjs --environment MIN",
"build:cjs": "rollup -c --bundleConfigAsCjs --environment TARGET:cjs",
"build:cjs:min": "rollup -c --bundleConfigAsCjs --environment MIN,TARGET:cjs",
"build:release": "npm run clean && npm run build:umd:min && npm run build:cjs:min",
"build:demo": "rimraf docs && rollup -c --bundleConfigAsCjs --environment DEMO,MIN",
"build:dev": "npm run build:umd && npm run build:cjs",
"prepublishOnly": "npm run build:release",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhuix/showdowns.git"
},
"keywords": [
"showdowns",
"showdown",
"markdown",
"html",
"mermaid",
"plantuml",
"katex",
"toc"
],
"files": [
"dist",
"demo",
"logo.png",
"favicon.ico"
],
"author": "Jhuix [Hui Jin] <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/jhuix/showdowns#readme",
"private": false,
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/plugin-external-helpers": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@types/rollup-plugin-node-builtins": "^2.1.5",
"@types/rollup-plugin-node-globals": "^1.4.4",
"autoprefixer": "^10.4.19",
"cssnano": "^7.0.4",
"eslint": "^9.7.0",
"less": "^4.2.0",
"postcss-banner": "^4.0.1",
"postcss-nested": "^6.2.0",
"postcss-simple-vars": "^7.0.1",
"rimraf": "^6.0.1",
"rollup": "^4.19.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-postcss": "^4.0.2",
"semver": "^7.6.3"
},
"dependencies": {
"@rokt33r/js-sequence-diagrams": "^2.0.6-2",
"@viz-js/viz": "^3.7.0",
"abcjs": "^6.4.1",
"echarts": "^5.5.1",
"flowchart.js": "^1.18.0",
"katex": "^0.16.11",
"mermaid": "^10.9.1",
"railroad-diagrams": "^1.0.0",
"raphael": "^2.3.0",
"showdown": "^2.1.0",
"snapsvg": "^0.5.1",
"underscore": "^1.13.6",
"vega": "^5.30.0",
"vega-embed": "^6.26.0",
"vega-lite": "^5.19.0",
"wavedrom": "^3.5.0",
"webfontloader": "^1.6.28"
},
"publishConfig": {
"access": "public"
}
}