-
Notifications
You must be signed in to change notification settings - Fork 391
/
package.json
87 lines (87 loc) · 2.58 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
{
"name": "react-markplus",
"version": "0.1.3",
"description": "A React markdown editor and previewer.",
"keywords": [
"markdown",
"editor",
"markplus",
"mark plus",
"markplus.io",
"react markdown",
"react markdown editor",
"react editor"
],
"homepage": "https://github.com/markpluslabs/react-markplus",
"bugs": {
"url": "https://github.com/markpluslabs/react-markplus/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markpluslabs/react-markplus.git"
},
"license": "MIT",
"author": "Tyler Liu",
"type": "module",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "tsc --skipLibCheck --noEmit && eslint . --fix && prettier --write . && sort-package-json",
"prepublishOnly": "tsc --skipLibCheck --declaration --sourceMap",
"postpublish": "find ./src ./demo -type f \\( -name '*.js' -o -name '*.d.ts' -o -name '*.js.map' \\) -delete",
"release": "rm -rf .parcel-cache docs && parcel build demo/index.html --dist-dir docs --public-url ./ && gh-pages -d docs && rm -rf docs",
"serve": "rm -rf .parcel-cache temp && parcel demo/index.html --dist-dir temp"
},
"dependencies": {
"@codemirror/commands": "^6.7.1",
"@codemirror/lang-markdown": "^6.3.1",
"@codemirror/language": "^6.10.3",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.34.2",
"@fortawesome/fontawesome-free": "^6.6.0",
"@uiw/codemirror-theme-github": "^4.23.6",
"antd": "^5.22.0",
"chart.js": "^4.4.6",
"debounce": "^2.2.0",
"github-markdown-css": "^5.7.0",
"katex": "^0.16.11",
"manate": "^0.9.13",
"markplus-engine": "^0.1.3",
"mermaid": "^11.4.0",
"split-grid": "^1.0.11",
"wait-for-async": "^0.7.0"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.12.0",
"@parcel/transformer-typescript-tsc": "^2.12.0",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint-config-tyler": "^0.2.1",
"gh-pages": "^6.2.0",
"globals": "^15.12.0",
"localforage": "^1.10.0",
"parcel": "^2.12.0",
"parcel-namer-hashless": "^1.0.6",
"path-browserify": "^1.0.1",
"postcss": "^8.4.48",
"postcss-modules": "4.3.1",
"process": "^0.11.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sort-package-json": "^2.10.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"yarn-upgrade-all": "^0.7.4"
},
"parcel-namer-hashless": {},
"targets": {
"types": false,
"main": false
},
"yarn-upgrade-all": {
"ignore": [
"postcss-modules"
]
}
}