Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Mar 4, 2024
1 parent ca9a937 commit 64c53a5
Showing 1 changed file with 75 additions and 70 deletions.
145 changes: 75 additions & 70 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,49 +1,32 @@
{
"name": "azurecli",
"displayName": "Azure CLI Tools",
"version": "0.0.1",
"private": false,
"description": "Tools for developing and running commands of the Azure CLI.",
"version": "0.6.0",
"icon": "images/azure_icon.png",
"publisher": "ms-vscode",
"homepage": "https://github.com/CodeEditorLand/Environment#readme",
"bugs": {
"url": "https://github.com/CodeEditorLand/Environment/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-azurecli.git"
"url": "git+https://github.com/CodeEditorLand/Environment.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/vscode-azurecli/issues"
},
"engines": {
"vscode": "1.75.0"
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Nikola R. Hristov",
"email": "nikola@nikolahristov.tech",
"url": "https://nikolahristov.tech"
},
"categories": [
"Programming Languages",
"Snippets",
"Azure"
],
"publisher": "playform",
"type": "module",
"main": "./out/src/extension",
"l10n": "./l10n",
"scripts": {
"compile": "tsc -p ./",
"prepublishOnly": "TypeScriptESBuild 'Source/**/*.ts'",
"watch": "tsc -watch -p ./"
},
"contributes": {
"languages": [
{
"id": "azcli",
"aliases": [
"Azure CLI Scrapbook",
"azcli"
],
"extensions": [
".azcli"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "azcli",
"scopeName": "source.azcli",
"path": "./syntaxes/azcli.tmLanguage.json"
}
],
"commands": [
{
"category": "Azure CLI",
Expand All @@ -66,6 +49,31 @@
"title": "%installAzureCLI.title%"
}
],
"configuration": {
"properties": {
"azureCLI.lineContinuationCharacter": {
"default": "",
"description": "%azureCLI.lineContinuationCharacter.description%",
"scope": "resource",
"type": "string"
},
"azureCLI.showResultInNewEditor": {
"default": false,
"description": "%azureCLI.showResultInNewEditor.description%",
"scope": "resource",
"type": "boolean"
}
},
"title": "%configuration.title%",
"type": "object"
},
"grammars": [
{
"language": "azcli",
"path": "./syntaxes/azcli.tmLanguage.json",
"scopeName": "source.azcli"
}
],
"keybindings": [
{
"command": "ms-azurecli.runLineInTerminal",
Expand All @@ -86,67 +94,64 @@
"when": "editorTextFocus && editorLangId == 'azcli'"
}
],
"configuration": {
"type": "object",
"title": "%configuration.title%",
"properties": {
"azureCLI.showResultInNewEditor": {
"type": "boolean",
"default": false,
"scope": "resource",
"description": "%azureCLI.showResultInNewEditor.description%"
},
"azureCLI.lineContinuationCharacter": {
"type": "string",
"default": "",
"scope": "resource",
"description": "%azureCLI.lineContinuationCharacter.description%"
}
"languages": [
{
"aliases": [
"Azure CLI Scrapbook",
"azcli"
],
"configuration": "./language-configuration.json",
"extensions": [
".azcli"
],
"id": "azcli"
}
},
],
"menus": {
"editor/context": [
"commandPalette": [
{
"command": "ms-azurecli.runLineInTerminal",
"group": "2_run",
"when": "editorLangId == 'azcli'"
},
{
"command": "ms-azurecli.runLineInEditor",
"group": "2_run",
"when": "editorLangId == 'azcli'"
},
{
"command": "ms-azurecli.toggleLiveQuery",
"when": "editorLangId == 'azcli'"
}
],
"commandPalette": [
"editor/context": [
{
"command": "ms-azurecli.runLineInTerminal",
"group": "2_run",
"when": "editorLangId == 'azcli'"
},
{
"command": "ms-azurecli.runLineInEditor",
"when": "editorLangId == 'azcli'"
},
{
"command": "ms-azurecli.toggleLiveQuery",
"group": "2_run",
"when": "editorLangId == 'azcli'"
}
]
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
"dependencies": {
"elegant-spinner": "3.0.0",
"jmespath": "0.16.0",
"semver": "7.6.0"
},
"devDependencies": {
"@types/jmespath": "0.15.2",
"@types/node": "20.11.24",
"@types/semver": "7.5.8",
"@types/vscode": "1.87.0",
"typescript": "5.3.3"
"typescript": "5.3.3",
"typescript-esbuild": "0.3.6"
},
"dependencies": {
"jmespath": "0.16.0",
"semver": "7.6.0",
"elegant-spinner": "3.0.0"
}
"publishConfig": {
"access": "public"
},
"icon": "images/azure_icon.png",
"l10n": "./l10n"
}

0 comments on commit 64c53a5

Please sign in to comment.