-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.35 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.35 KB
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": "@muyajs/core",
"version": "0.0.39",
"description": "Core package for muya.",
"author": "jocs <ransixi@gmail.com>",
"license": "MIT",
"keywords": [
"markdown"
],
"exports": {
".": "./src/index.ts",
"./*": "./src/*"
},
"main": "./lib/cjs/index.js",
"module": "./lib/es/index.js",
"types": "./lib/types/index.d.ts",
"publishConfig": {
"access": "public",
"main": "./lib/cjs/index.js",
"module": "./lib/es/index.js",
"exports": {
".": {
"import": "./lib/es/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/types/index.d.ts"
},
"./*": {
"import": "./lib/es/*",
"require": "./lib/cjs/*",
"types": "./lib/types/index.d.ts"
},
"./lib/*": "./lib/*"
}
},
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"lint:types": "tsc --noEmit",
"build": "tsc && vite build",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@floating-ui/dom": "^1.7.4",
"@marktext/file-icons": "^1.0.4",
"dompurify": "^3.3.2",
"execall": "^3.0.0",
"fast-diff": "^1.3.0",
"fuse.js": "^7.1.0",
"html-tags": "^5.1.0",
"joplin-turndown-plugin-gfm": "^1.0.12",
"katex": "0.16.25",
"marked": "^16.4.2",
"marked-highlight": "^2.2.3",
"mermaid": "11.12.1",
"ot-json1": "^1.0.2",
"ot-text-unicode": "^4.0.0",
"plantuml-encoder": "^1.4.0",
"prismjs": "^1.30.0",
"rxjs": "^7.8.2",
"snabbdom": "^3.6.3",
"snabbdom-to-html": "^7.1.0",
"turndown": "^7.2.2",
"vega": "^6.2.0",
"vega-embed": "^7.1.0",
"vega-lite": "^6.4.1"
},
"devDependencies": {
"@types/katex": "^0.16.7",
"@types/plantuml-encoder": "^1.4.2",
"@types/prismjs": "^1.26.3",
"@types/turndown": "^5.0.4",
"@vitest/coverage-istanbul": "^4.0.8",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vitest": "^4.0.8"
}
}