-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.46 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
{
"name": "monaco-unified",
"version": "2.0.0",
"homepage": "https://monaco-unified.js.org",
"description": "Get warnings and error messages in monaco editor based on a unified processor.",
"type": "module",
"workspaces": [
"examples/*"
],
"exports": {
".": "./dist/monaco-unified.js",
"./worker": "./dist/worker.js"
},
"files": [
"dist",
"src",
"!tsconfig.json",
"!*.tsbuildinfo"
],
"keywords": [
"monaco",
"monaco-editor",
"unified",
"unifiedjs",
"remark",
"rehype",
"mdx",
"markdown",
"html"
],
"author": "Remco Haszing <remcohaszing@gmail.com>",
"license": "MIT",
"repository": "remcohaszing/monaco-unified",
"bugs": "https://github.com/remcohaszing/monaco-unified/issues",
"funding": "https://github.com/sponsors/remcohaszing",
"scripts": {
"prepack": "tsc --build",
"prestart": "tsc --build",
"start": "npm --workspace demo start"
},
"dependencies": {
"monaco-types": "^0.1.0",
"monaco-marker-data-provider": "^1.0.0",
"monaco-worker-manager": "^2.0.0",
"unified": "^11.0.0",
"vfile": "^6.0.0"
},
"peerDependencies": {
"monaco-editor": ">=0.30.0"
},
"devDependencies": {
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^10.0.0",
"monaco-editor": "^0.41.0",
"prettier": "^3.0.0",
"remark-cli": "^12.0.0",
"remark-preset-remcohaszing": "^3.0.0",
"typescript": "^5.0.0",
"vfile-message": "^4.0.0"
}
}