2018-08-01 18:00:40 +03:00
{
2018-08-13 21:09:54 +03:00
"name" : "azure-pipelines" ,
"displayName" : "Azure Pipelines" ,
2019-02-15 19:59:10 +03:00
"description" : "Syntax highlighting, IntelliSense, and more for Azure Pipelines YAML" ,
2023-09-21 15:27:33 +03:00
"version" : "1.228.0" ,
2018-08-15 16:48:05 +03:00
"publisher" : "ms-azure-devops" ,
2019-08-13 13:06:18 +03:00
"aiKey" : "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217" ,
2018-08-15 16:48:05 +03:00
"repository" : {
"type" : "git" ,
2018-11-16 17:41:43 +03:00
"url" : "https://github.com/Microsoft/azure-pipelines-vscode"
2018-08-15 16:48:05 +03:00
} ,
2020-08-18 16:55:54 +03:00
"homepage" : "https://github.com/Microsoft/azure-pipelines-vscode/blob/main/README.md" ,
2018-11-16 17:41:43 +03:00
"bugs" : "https://github.com/Microsoft/azure-pipelines-vscode/issues/" ,
2018-08-15 16:48:05 +03:00
"license" : "MIT" ,
2018-08-13 14:46:57 +03:00
"icon" : "assets/pipelines.png" ,
2018-08-15 16:48:05 +03:00
"galleryBanner" : {
2018-11-29 23:38:02 +03:00
"color" : "#D4DCEC" ,
"theme" : "light"
2018-08-15 16:48:05 +03:00
} ,
2018-08-06 21:49:28 +03:00
"engines" : {
2022-04-26 09:32:14 +03:00
"vscode" : "^1.64.0" ,
2022-02-16 12:36:19 +03:00
"node" : ">=12.20.0"
2018-08-06 21:49:28 +03:00
} ,
"categories" : [
2018-08-15 16:48:05 +03:00
"Programming Languages" ,
2019-07-16 15:01:51 +03:00
"Formatters" ,
"Azure"
2018-08-06 21:49:28 +03:00
] ,
2019-02-15 19:59:10 +03:00
"tags" : [
"azure-pipelines" ,
"Azure Pipelines" ,
"YAML"
] ,
2019-03-13 18:47:16 +03:00
"keywords" : [
"YAML" ,
"Azure Pipelines" ,
"continuous integration" ,
2019-03-18 19:53:38 +03:00
"CI/CD"
2019-03-13 18:47:16 +03:00
] ,
2018-08-06 21:49:28 +03:00
"activationEvents" : [
2020-10-19 21:28:36 +03:00
"onLanguage:azure-pipelines" ,
2021-01-22 07:58:10 +03:00
"onCommand:azure-pipelines.configure-pipeline"
2018-08-06 21:49:28 +03:00
] ,
2021-01-29 18:37:51 +03:00
"main" : "./dist/extension" ,
2021-06-11 04:04:50 +03:00
"capabilities" : {
"untrustedWorkspaces" : {
2021-06-12 06:01:55 +03:00
"supported" : "limited" ,
"restrictedConfigurations" : [
"azure-pipelines.customSchemaFile"
]
2021-06-11 04:04:50 +03:00
}
} ,
2018-08-01 18:00:40 +03:00
"contributes" : {
2018-08-06 17:36:07 +03:00
"languages" : [
2018-08-01 18:00:40 +03:00
{
2018-08-06 17:36:07 +03:00
"id" : "azure-pipelines" ,
"configuration" : "./language-configuration.json" ,
2018-08-06 21:49:28 +03:00
"filenamePatterns" : [
2023-11-20 08:54:04 +03:00
"azure-pipelines.{yml,yaml}" ,
".azure-pipelines.{yml,yaml}" ,
"**/azure-pipelines/**/*.{yml,yaml}" ,
"**/.azure-pipelines/**/*.{yml,yaml}" ,
"**/.pipelines/**/*.{yml,yaml}" ,
"vsts-ci.{yml,yaml}" ,
".vsts-ci.{yml,yaml}"
2018-08-06 21:49:28 +03:00
] ,
"aliases" : [
"Azure Pipelines"
2024-01-05 11:48:47 +03:00
] ,
"icon" : {
"light" : "./assets/pipelines-file-icon.svg" ,
"dark" : "./assets/pipelines-file-icon.svg"
}
2018-08-01 18:00:40 +03:00
}
2018-08-06 17:36:07 +03:00
] ,
"grammars" : [
{
"language" : "azure-pipelines" ,
"scopeName" : "source.yaml" ,
"path" : "./syntaxes/yaml.tmLanguage.json"
}
] ,
2018-08-22 18:01:06 +03:00
"configuration" : {
2020-05-20 14:53:37 +03:00
"title" : "Azure Pipelines" ,
2019-08-19 18:00:57 +03:00
"properties" : {
2021-01-21 16:49:20 +03:00
"azure-pipelines.configure" : {
2019-08-19 18:00:57 +03:00
"type" : "boolean" ,
"default" : true ,
2023-09-14 00:47:52 +03:00
"description" : "Enable 'Configure Pipeline' feature" ,
"order" : 0
} ,
"azure-pipelines.1ESPipelineTemplatesSchemaFile" : {
"type" : "boolean" ,
"default" : false ,
"description" : "Use 1ES Pipeline Template schema file" ,
"markdownDescription" : "If enabled, [1ES Pipeline Template schema file](https://aka.ms/1espt) will take precedence over custom schema file when user is signed in with `@microsoft.com` account and the schema is available in the ADO organization."
2020-05-20 14:53:37 +03:00
} ,
2021-01-21 16:49:20 +03:00
"azure-pipelines.customSchemaFile" : {
"type" : "string" ,
"description" : "Use a different schema file" ,
"scope" : "machine-overridable"
2019-08-19 18:00:57 +03:00
}
}
2018-08-22 18:01:06 +03:00
} ,
2018-08-13 17:05:01 +03:00
"configurationDefaults" : {
"[azure-pipelines]" : {
2018-08-13 22:06:12 +03:00
"editor.insertSpaces" : true ,
"editor.tabSize" : 2 ,
"editor.quickSuggestions" : {
2018-08-15 21:47:53 +03:00
"other" : true ,
"comments" : false ,
"strings" : true
2018-08-13 22:06:12 +03:00
} ,
2020-01-22 16:36:03 +03:00
"editor.autoIndent" : "full"
2018-08-13 17:05:01 +03:00
}
2019-07-16 15:01:51 +03:00
} ,
"commands" : [
{
2021-01-21 16:49:20 +03:00
"command" : "azure-pipelines.configure-pipeline" ,
2019-07-16 15:01:51 +03:00
"title" : "Configure Pipeline" ,
"category" : "Azure Pipelines"
2024-02-12 18:44:23 +03:00
} ,
{
"command" : "azure-pipelines.reset-state" ,
"title" : "Reset 'do not ask again' messages" ,
"category" : "Azure Pipelines"
2019-07-16 15:01:51 +03:00
}
] ,
"menus" : {
"explorer/context" : [
{
2021-01-21 16:49:20 +03:00
"command" : "azure-pipelines.configure-pipeline" ,
2019-09-04 10:04:23 +03:00
"group" : "Azure Pipelines" ,
"when" : "explorerResourceIsFolder == true"
2019-07-16 15:01:51 +03:00
}
]
2018-08-23 21:27:54 +03:00
}
2018-08-01 18:00:40 +03:00
} ,
"scripts" : {
"vscode:prepublish" : "npm run compile" ,
2022-01-20 21:53:07 +03:00
"compile" : "webpack --mode production --progress --color" ,
"compile:dev" : "webpack --mode development --progress --color" ,
2023-11-18 11:41:05 +03:00
"compile:test" : "tsc --project ./tsconfig.test.json" ,
2023-11-20 04:26:09 +03:00
"lint" : "eslint ." ,
2022-01-20 21:53:07 +03:00
"watch" : "webpack --mode development --progress --color --watch" ,
2023-11-18 11:41:05 +03:00
"test" : "npm run compile:test && node ./out/test/runTest.js"
2018-08-01 18:00:40 +03:00
} ,
"devDependencies" : {
2021-11-28 19:53:08 +03:00
"@types/glob" : "^7.2.0" ,
2020-10-21 06:44:56 +03:00
"@types/html-to-text" : "^5.1.2" ,
2021-11-28 19:53:08 +03:00
"@types/mocha" : "^9.0.0" ,
2019-08-13 09:13:49 +03:00
"@types/mustache" : "0.8.32" ,
2021-11-20 01:07:13 +03:00
"@types/node" : "^14.16.0" ,
2022-05-03 22:27:17 +03:00
"@types/uuid" : "^8.3.4" ,
2022-04-26 09:32:14 +03:00
"@types/vscode" : "~1.64.0" ,
2023-11-20 04:26:09 +03:00
"@typescript-eslint/eslint-plugin" : "^6.11.0" ,
"@typescript-eslint/parser" : "^6.11.0" ,
2021-11-28 19:53:08 +03:00
"@vscode/test-electron" : "^1.6.2" ,
2022-01-20 21:53:07 +03:00
"copy-webpack-plugin" : "^10.2.0" ,
2023-11-20 04:26:09 +03:00
"eslint" : "^8.54.0" ,
2020-05-20 16:52:56 +03:00
"glob" : "^7.1.6" ,
2021-11-28 19:53:08 +03:00
"mocha" : "^9.1.1" ,
2021-01-26 06:34:48 +03:00
"ts-loader" : "^8.0.14" ,
2023-11-18 11:41:05 +03:00
"typescript" : "~5.2.2" ,
2023-03-15 23:57:16 +03:00
"webpack" : "^5.76.0" ,
2021-01-26 06:34:48 +03:00
"webpack-cli" : "^4.4.0"
2018-08-06 17:36:07 +03:00
} ,
"dependencies" : {
2021-01-26 07:36:42 +03:00
"@azure/arm-appservice" : "^6.1.0" ,
"@azure/arm-subscriptions" : "^3.0.0" ,
"@azure/ms-rest-azure-env" : "^2.0.0" ,
2021-01-29 07:55:48 +03:00
"@azure/ms-rest-nodeauth" : "^3.0.6" ,
2022-05-03 22:27:17 +03:00
"@vscode/extension-telemetry" : "^0.5.1" ,
2021-11-20 01:07:13 +03:00
"azure-devops-node-api" : "^11.0.1" ,
2022-12-07 04:57:14 +03:00
"azure-pipelines-language-server" : "0.7.0" ,
2020-10-21 06:44:56 +03:00
"html-to-text" : "^5.1.1" ,
2022-05-03 22:27:17 +03:00
"mustache" : "^4.2.0" ,
"uuid" : "^8.3.2" ,
2021-01-22 06:48:24 +03:00
"vscode-languageclient" : "^7.0.0" ,
"vscode-uri" : "^3.0.2"
2019-07-16 15:01:51 +03:00
} ,
"extensionDependencies" : [
"ms-vscode.azure-account"
]
2018-08-01 18:00:40 +03:00
}