azure-pipelines-vscode/package.json

146 строки
4.9 KiB
JSON
Исходник Обычный вид История

2018-08-01 18:00:40 +03:00
{
2018-08-13 21:09:54 +03:00
"name": "azure-pipelines",
"displayName": "Azure Pipelines",
"description": "Syntax highlighting, IntelliSense, and more for Azure Pipelines YAML",
"version": "1.237.0",
2018-08-15 16:48:05 +03:00
"publisher": "ms-azure-devops",
"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": {
"vscode": "^1.82.0"
2018-08-06 21:49:28 +03:00
},
"categories": [
2018-08-15 16:48:05 +03:00
"Programming Languages",
"Formatters",
"Azure"
2018-08-06 21:49:28 +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
],
"main": "./dist/extension",
"capabilities": {
"untrustedWorkspaces": {
2021-06-12 06:01:55 +03:00
"supported": "limited",
"restrictedConfigurations": [
"azure-pipelines.customSchemaFile"
]
}
},
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": [
"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": {
"title": "Azure Pipelines",
"properties": {
"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."
},
"azure-pipelines.customSchemaFile": {
"type": "string",
"description": "Use a different schema file",
"scope": "machine-overridable"
}
}
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": {
"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
}
},
"commands": [
{
"command": "azure-pipelines.reset-state",
"title": "Reset 'do not ask again' messages",
"category": "Azure Pipelines"
}
]
2018-08-01 18:00:40 +03:00
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "webpack --mode production --progress --color",
"compile:dev": "webpack --mode development --progress --color",
"compile:test": "tsc --project ./tsconfig.test.json",
"lint": "eslint .",
"watch": "webpack --mode development --progress --color --watch",
"test": "npm run compile:test && vscode-test"
2018-08-01 18:00:40 +03:00
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "~20.15.0",
"@types/vscode": "~1.82.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^8.54.0",
"mocha": "^9.1.1",
"ts-loader": "^8.0.14",
"typescript": "~5.2.2",
"webpack": "^5.76.0",
"webpack-cli": "^4.4.0"
2018-08-06 17:36:07 +03:00
},
"dependencies": {
"@vscode/extension-telemetry": "^0.5.1",
"azure-devops-node-api": "^11.0.1",
2024-03-11 10:59:12 +03:00
"azure-pipelines-language-server": "0.8.0",
2021-01-22 06:48:24 +03:00
"vscode-languageclient": "^7.0.0",
"vscode-uri": "^3.0.2"
}
2018-08-01 18:00:40 +03:00
}