2017-09-05 15:23:45 +02:00
|
|
|
{
|
2018-10-08 15:37:24 -07:00
|
|
|
"name": "basic-multi-root-sample",
|
|
|
|
|
"displayName": "Basic Multi Root Sample",
|
|
|
|
|
"description": "Samples for VSCode's multi root API",
|
|
|
|
|
"version": "0.0.1",
|
2018-10-15 11:52:55 -07:00
|
|
|
"publisher": "vscode-samples",
|
2021-06-11 17:10:40 -07:00
|
|
|
"private": true,
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
|
|
|
},
|
2018-10-08 15:37:24 -07:00
|
|
|
"engines": {
|
2023-01-30 21:11:11 -08:00
|
|
|
"vscode": "^1.73.0"
|
2018-10-08 15:37:24 -07:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
2017-09-05 15:23:45 +02:00
|
|
|
"*"
|
|
|
|
|
],
|
2018-10-08 15:37:24 -07:00
|
|
|
"main": "./out/src/extension",
|
|
|
|
|
"scripts": {
|
2019-05-09 14:50:48 -07:00
|
|
|
"vscode:prepublish": "npm run compile",
|
2019-05-30 18:28:15 -07:00
|
|
|
"compile": "tsc -p ./",
|
2024-10-26 17:44:03 -07:00
|
|
|
"lint": "eslint",
|
2019-05-09 14:50:48 -07:00
|
|
|
"watch": "tsc -watch -p ./"
|
2018-10-08 15:37:24 -07:00
|
|
|
},
|
|
|
|
|
"contributes": {
|
|
|
|
|
"configuration": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"title": "Basic Multi Root Sample",
|
|
|
|
|
"properties": {
|
|
|
|
|
"multiRootSample.statusColor": {
|
|
|
|
|
"type": [
|
|
|
|
|
"string"
|
|
|
|
|
],
|
|
|
|
|
"default": "#FFFFFF",
|
|
|
|
|
"description": "Color to use for the status bar item. Can be set per workspace folder.",
|
|
|
|
|
"scope": "resource"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-10-26 17:44:03 -07:00
|
|
|
"@eslint/js": "^9.13.0",
|
|
|
|
|
"@stylistic/eslint-plugin": "^2.9.0",
|
2024-10-03 11:53:22 -07:00
|
|
|
"@types/node": "^20",
|
2023-01-30 21:11:11 -08:00
|
|
|
"@types/vscode": "^1.73.0",
|
2024-10-26 17:44:03 -07:00
|
|
|
"eslint": "^9.13.0",
|
2025-03-03 09:17:39 -08:00
|
|
|
"typescript": "^5.8.2",
|
2025-03-03 09:59:28 -08:00
|
|
|
"typescript-eslint": "^8.26.0"
|
2018-10-08 15:37:24 -07:00
|
|
|
}
|
|
|
|
|
}
|