vscode/extensions/r/package.json
Michael Chirico 37871bb35a
Update org in reference repo (#194415)
* Update org in reference repo

This threw me off in #194352 -- I was not familiar with the original repo owner so I assumed this info was stale. The link now redirects to the REditorSupport org, but having the correct source in the plain text is still preferable for human readers.

* Update template generation source

* Update R repo in cgmanifest

---------

Co-authored-by: Alex Ross <alros@microsoft.com>
2023-10-02 14:10:13 +00:00

44 lines
906 B
JSON

{
"name": "r",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.0",
"publisher": "vscode",
"license": "MIT",
"engines": {
"vscode": "*"
},
"scripts": {
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin REditorSupport/vscode-R syntax/r.json ./syntaxes/r.tmLanguage.json"
},
"contributes": {
"languages": [
{
"id": "r",
"extensions": [
".r",
".rhistory",
".rprofile",
".rt"
],
"aliases": [
"R",
"r"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "r",
"scopeName": "source.r",
"path": "./syntaxes/r.tmLanguage.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode.git"
}
}