Files

49 lines
1.1 KiB
JSON
Raw Permalink Normal View History

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": {
"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": {
"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 ./",
"lint": "eslint",
"watch": "tsc -watch -p ./"
2022-04-01 12:09:11 -04:00
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
2025-08-06 23:43:14 -07:00
"@types/node": "^22",
"@types/vscode": "^1.100.0",
"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
}