mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 10:08:49 +01:00
* 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>
61 lines
1.3 KiB
JSON
61 lines
1.3 KiB
JSON
{
|
|
"name": "vscode-colorize-tests",
|
|
"description": "Colorize tests for VS Code",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"activationEvents": [
|
|
"onLanguage:json"
|
|
],
|
|
"main": "./out/colorizerTestMain",
|
|
"engines": {
|
|
"vscode": "*"
|
|
},
|
|
"icon": "media/icon.png",
|
|
"scripts": {
|
|
"vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:vscode-colorize-tests ./tsconfig.json"
|
|
},
|
|
"dependencies": {
|
|
"jsonc-parser": "2.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "18.x"
|
|
},
|
|
"contributes": {
|
|
"semanticTokenTypes": [
|
|
{
|
|
"id": "testToken",
|
|
"description": "A test token"
|
|
}
|
|
],
|
|
"semanticTokenModifiers": [
|
|
{
|
|
"id": "testModifier",
|
|
"description": "A test modifier"
|
|
}
|
|
],
|
|
"semanticTokenScopes": [
|
|
{
|
|
"scopes": {
|
|
"testToken": [
|
|
"entity.name.function.special"
|
|
]
|
|
}
|
|
}
|
|
],
|
|
"productIconThemes": [
|
|
{
|
|
"id": "Test Product Icons",
|
|
"label": "The Test Product Icon Theme",
|
|
"path": "./producticons/test-product-icon-theme.json",
|
|
"_watch": true
|
|
}
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|