-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.79 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.79 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
{
"name": "@mdxeditor/source-preview-plugin",
"version": "0.2.0",
"description": "MDXEditor plugin for displaying source code alongside preview in a side-by-side view",
"type": "module",
"license": "MIT",
"author": "Petyo Ivanov",
"homepage": "https://github.com/mdx-editor/extras/tree/main/packages/source-preview-plugin#readme",
"repository": {
"type": "git",
"url": "https://github.com/mdx-editor/extras.git",
"directory": "packages/source-preview-plugin"
},
"bugs": {
"url": "https://github.com/mdx-editor/extras/issues"
},
"keywords": [
"mdxeditor",
"plugin",
"source",
"preview",
"markdown",
"editor",
"react",
"lexical"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"dev": "ladle dev"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@ladle/react": "^5.1.1",
"@mdxeditor/tooling": "workspace:*",
"@monaco-editor/loader": "^1.6.1",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/colors": "^3.0.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"cm6-theme-basic-dark": "^0.2.0",
"cm6-theme-basic-light": "^0.2.0",
"eslint": "^9.39.1",
"monaco-editor": "^0.52.2",
"prettier": "^3.6.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.9.3",
"vite": "^7.2.2"
},
"dependencies": {
"@mdxeditor/editor": "^3.49.3",
"@mdxeditor/gurx": "^1.2.4"
}
}