-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
70 lines (70 loc) · 1.83 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
{
"name": "monaco-yaml",
"version": "5.3.1",
"description": "YAML plugin for the Monaco Editor",
"homepage": "https://monaco-yaml.js.org",
"scripts": {
"prepack": "tsc -b && node build.js",
"prestart": "node build.js",
"pretest": "node build.js",
"start": "npm --workspace demo start",
"test": "vitest run"
},
"type": "module",
"main": "./index.js",
"typings": "./index.d.ts",
"files": [
"index.*",
"fillers/*.ts",
"src",
"yaml.worker.*"
],
"workspaces": [
"examples/*"
],
"author": "Kevin Decker <[email protected]> (http://incaseofstairs.com)",
"maintainers": [
"Remco Haszing <[email protected]> (https://github.com/remcohaszing)"
],
"license": "MIT",
"repository": "remcohaszing/monaco-yaml",
"bugs": "https://github.com/remcohaszing/monaco-yaml/issues",
"funding": "https://github.com/sponsors/remcohaszing",
"keywords": [
"editor",
"frontend",
"front-end",
"monaco",
"monaco-editor",
"yaml"
],
"dependencies": {
"jsonc-parser": "^3.0.0",
"monaco-languageserver-types": "^0.4.0",
"monaco-marker-data-provider": "^1.0.0",
"monaco-types": "^0.1.0",
"monaco-worker-manager": "^2.0.0",
"path-browserify": "^1.0.0",
"prettier": "^3.0.0",
"vscode-languageserver-textdocument": "^1.0.0",
"vscode-languageserver-types": "^3.0.0",
"vscode-uri": "^3.0.0",
"yaml": "^2.0.0"
},
"peerDependencies": {
"monaco-editor": ">=0.36"
},
"devDependencies": {
"@vitest/browser": "^3.0.0",
"esbuild": "^0.24.0",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^10.0.0",
"monaco-editor": "^0.52.0",
"playwright": "^1.0.0",
"remark-cli": "^12.0.0",
"remark-preset-remcohaszing": "^3.0.0",
"typescript": "^5.0.0",
"vitest": "^3.0.0",
"yaml-language-server": "1.16.0"
}
}