Files
spring-tools/vscode-extensions/vscode-manifest-yaml/package.json
2020-05-28 16:12:11 +00:00

103 lines
2.8 KiB
JSON

{
"name": "vscode-manifest-yaml",
"displayName": "Cloudfoundry Manifest YML Support",
"description": "Adds linting, content assist and hoverinfo's for Cloudfoundry Deployment Manifests (a.k.a. `manifest.yml`) files.",
"icon": "icon.png",
"version": "1.19.0",
"publisher": "Pivotal",
"repository": {
"type": "git",
"url": "https://github.com/spring-projects/sts4.git"
},
"license": "EPL-1.0",
"engines": {
"npm": "^6.0.0",
"vscode": "^1.41.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [
"yaml",
"cloudfoundry",
"manifest.yml"
],
"activationEvents": [
"onLanguage:manifest-yaml"
],
"contributes": {
"languages": [
{
"id": "manifest-yaml",
"aliases": [
"cloudfoundry-manifest"
],
"filenamePatterns": [
"*manifest*.yml"
],
"configuration": "./yaml-support/language-configuration.json"
}
],
"grammars": [
{
"language": "manifest-yaml",
"scopeName": "source.yaml",
"path": "./yaml-support/yaml.tmLanguage"
}
],
"configuration": {
"title": "Cloudfoundry Manifest Language Server Configuration",
"properties": {
"cloudfoundry-manifest.ls.logfile": {
"type": [
"string",
"null"
],
"description": "The path of a file to write language server logs. If not set or null, then logs are discarded."
},
"cloudfoundry-manifest.ls.java.heap": {
"type": [
"string",
"null"
],
"description": "Passed as an `-Xmx` argument to the language server JVM process"
},
"cloudfoundry-manifest.ls.java.home": {
"type": [
"string",
"null"
],
"description": "Overrides JAVA_HOME used for launching the language server JVM process"
},
"cloudfoundry-manifest.ls.java.vmargs": {
"type": "array",
"items": {
"type": "string"
},
"description": "Additional 'user defined' VM args to pass to the language server process."
}
}
}
},
"main": "./out/lib/Main",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"clean": "rm -fr node_modules out *.vsix package-lock.json",
"preinstall": "./scripts/preinstall.sh",
"vsce-package": "vsce package"
},
"dependencies": {
"@pivotal-tools/commons-vscode": "file:../commons-vscode/pivotal-tools-commons-vscode-0.2.3.tgz",
"vscode-languageclient": "6.0.0"
},
"devDependencies": {
"vsce": "^1.74.0",
"typescript": "3.8.3",
"@types/node": "^12.7.9",
"@types/vscode": "^1.41.0"
}
}