vscode/extensions/jake/package.json
Robo ea490e5545
chore: update to Electron 25 (#188268)
* chore: update electron@25.3.0

* ci: update NodeTool version

* chore: update @types/node

* add more common types to layers checker

* chore: update debian dependencies

* chore: update rpm dependencies

* fix: use legacy dns result order of Node.js

* ci: remove deprecated always-auth npm config

Refs npm/cli@72a7eeb

* chore: update deb and rpm dependencies

* chore: update armhf rpm dependencies

* chore: update x64 debian dependencies

* chore: update x64 rpm dependencies

* chore: update electron@25.3.1

* chore: update electron@25.4.0

* chore: bump distro

* chore: bump distro

---------

Co-authored-by: Benjamin Pasero <benjamin.pasero@microsoft.com>
2023-08-07 21:46:27 +09:00

76 lines
1.6 KiB
JSON

{
"name": "jake",
"publisher": "vscode",
"description": "%description%",
"displayName": "%displayName%",
"icon": "images/cowboy_hat.png",
"version": "1.0.0",
"license": "MIT",
"engines": {
"vscode": "*"
},
"categories": [
"Other"
],
"scripts": {
"compile": "gulp compile-extension:jake",
"watch": "gulp watch-extension:jake"
},
"dependencies": {},
"devDependencies": {
"@types/node": "18.x"
},
"main": "./out/main",
"activationEvents": [
"onTaskType:jake"
],
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"configuration": {
"id": "jake",
"type": "object",
"title": "Jake",
"properties": {
"jake.autoDetect": {
"scope": "application",
"type": "string",
"enum": [
"off",
"on"
],
"default": "off",
"description": "%config.jake.autoDetect%"
}
}
},
"taskDefinitions": [
{
"type": "jake",
"required": [
"task"
],
"properties": {
"task": {
"type": "string",
"description": "%jake.taskDefinition.type.description%"
},
"file": {
"type": "string",
"description": "%jake.taskDefinition.file.description%"
}
},
"when": "shellExecutionSupported"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode.git"
}
}