forked from marktext/muya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.35 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
{
"name": "@marktext/muya",
"version": "0.2.5",
"description": "Future markdown editor",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"test": "jest --env=jsdom",
"lint:ts": "eslint lib",
"lint:ts:fix": "eslint --fix packages",
"lint:css": "stylelint \"**/*.css\"",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"pub": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marktext/muya.git"
},
"keywords": [
"markdown",
"editor",
"web",
"desktop"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/marktext/muya/issues"
},
"homepage": "https://github.com/marktext/muya#readme",
"dependencies": {
"@marktext/file-icons": "^1.0.4",
"dompurify": "^3.0.9",
"execall": "^3.0.0",
"fast-diff": "^1.3.0",
"fuse.js": "^7.0.0",
"html-tags": "^3.3.1",
"intl-segmenter-polyfill": "^0.4.4",
"joplin-turndown-plugin-gfm": "^1.0.12",
"katex": "0.16.9",
"marked": "^12.0.0",
"marked-highlight": "^2.1.1",
"mermaid": "10.8.0",
"ot-json1": "^1.0.2",
"ot-text-unicode": "^4.0.0",
"plantuml-encoder": "^1.4.0",
"popper.js": "^1.16.1",
"prismjs": "^1.29.0",
"snabbdom": "^3.6.2",
"snabbdom-to-html": "^7.1.0",
"turndown": "^7.1.2",
"vega": "^5.27.0",
"vega-embed": "^6.24.0",
"vega-lite": "^5.16.3"
},
"devDependencies": {
"@laynezh/vite-plugin-lib-assets": "0.5.2",
"@types/dompurify": "^3.0.5",
"@types/katex": "^0.16.7",
"@types/plantuml-encoder": "^1.4.2",
"@types/popper.js": "^1.11.0",
"@types/prismjs": "^1.26.3",
"@types/turndown": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"commitlint": "^19.0.3",
"eslint": "^8.57.0",
"husky": "9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"pinst": "^3.0.0",
"stylelint": "^16.2.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3"
}
}