2022-04-01 12:09:11 -04:00
|
|
|
{
|
|
|
|
|
"name": "tabs-api-sample",
|
|
|
|
|
"displayName": "tabs-api-sample",
|
|
|
|
|
"description": "Sample showing how to use the tabs api",
|
|
|
|
|
"version": "0.0.1",
|
2022-04-05 09:21:46 -04:00
|
|
|
"publisher": "vscode-samples",
|
2022-04-01 12:09:11 -04:00
|
|
|
"private": true,
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"repository": "https://github.com/Microsoft/vscode-extension-samples",
|
|
|
|
|
"engines": {
|
2025-08-07 07:57:14 -07:00
|
|
|
"vscode": "^1.100.0"
|
2022-04-01 12:09:11 -04:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
2022-04-07 09:27:11 -04:00
|
|
|
"onStartupFinished"
|
2022-04-01 12:09:11 -04:00
|
|
|
],
|
|
|
|
|
"main": "./out/extension.js",
|
2022-04-07 09:27:11 -04:00
|
|
|
"browser": "./out/extension.js",
|
2022-04-01 12:09:11 -04:00
|
|
|
"contributes": {
|
2022-05-27 14:46:59 -04:00
|
|
|
"configuration": {
|
2022-04-01 15:14:46 -04:00
|
|
|
"title": "Tabs API Sample",
|
|
|
|
|
"id": "tabsSample",
|
|
|
|
|
"properties": {
|
|
|
|
|
"tabs.maxInactiveTime": {
|
|
|
|
|
"default": 30,
|
|
|
|
|
"description": "The number of seconds before closing inactive tabs",
|
|
|
|
|
"type": "number"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-01 12:09:11 -04:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"vscode:prepublish": "npm run compile",
|
|
|
|
|
"compile": "tsc -p ./",
|
2024-10-26 17:44:03 -07:00
|
|
|
"lint": "eslint",
|
2022-05-27 14:46:59 -04:00
|
|
|
"watch": "tsc -watch -p ./"
|
2022-04-01 12:09:11 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-10-26 17:44:03 -07:00
|
|
|
"@eslint/js": "^9.13.0",
|
|
|
|
|
"@stylistic/eslint-plugin": "^2.9.0",
|
2025-08-06 23:43:14 -07:00
|
|
|
"@types/node": "^22",
|
2025-08-07 07:57:14 -07:00
|
|
|
"@types/vscode": "^1.100.0",
|
2024-10-26 17:44:03 -07:00
|
|
|
"eslint": "^9.13.0",
|
2025-08-06 23:43:14 -07:00
|
|
|
"typescript": "^5.9.2",
|
|
|
|
|
"typescript-eslint": "^8.39.0"
|
2022-04-01 12:09:11 -04:00
|
|
|
}
|
2025-08-06 23:43:14 -07:00
|
|
|
}
|