forked from aws/language-servers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "@aws/lsp-yaml",
"version": "0.1.17",
"description": "YAML Language Server",
"main": "out/index.js",
"repository": {
"type": "git",
"url": "https://github.com/aws/language-servers"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"files": [
"out/**/*",
"patches/**/*",
"patchYamlPackage.js",
"CHANGELOG.md",
"SECURITY.md",
"NOTICE"
],
"scripts": {
"compile": "tsc --build",
"prepack": "shx cp ../../LICENSE ../../NOTICE ../../SECURITY.md .",
"postinstall": "node patchYamlPackage.js"
},
"dependencies": {
"@aws/language-server-runtimes": "^0.2.121",
"@aws/lsp-core": "^0.0.13",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.8",
"yaml-language-server": "1.13.0"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 4,
"singleQuote": true,
"semi": false,
"bracketSpacing": true,
"arrowParens": "avoid",
"endOfLine": "lf"
}
}