-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
69 lines (69 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
{
"name": "monaco-yaml",
"version": "5.2.3",
"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": "tsc -b && node build.js",
"start": "npm --workspace demo start",
"test": "playwright test"
},
"type": "module",
"main": "./index.js",
"typings": "./index.d.ts",
"files": [
"index.*",
"fillers/*.ts",
"src",
"yaml.worker.*"
],
"workspaces": [
"examples/*"
],
"author": "Kevin Decker <kpdecker@gmail.com> (http://incaseofstairs.com)",
"maintainers": [
"Remco Haszing <remcohaszing@gmail.com> (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": "^2.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": {
"@playwright/test": "^1.0.0",
"esbuild": "^0.21.0",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^9.0.0",
"monaco-editor": "^0.50.0",
"playwright-monaco": "^1.0.0",
"remark-cli": "^11.0.0",
"remark-preset-remcohaszing": "^1.0.0",
"typescript": "^5.0.0",
"yaml-language-server": "^1.0.0"
}
}