Files
vscode-extension-samples/notifications-sample/package.json

68 lines
1.7 KiB
JSON
Raw Normal View History

2022-07-28 14:48:13 -07:00
{
"name": "notifications-sample",
"displayName": "Notifications Sample",
"description": "Examples of notification types and various configurations",
"version": "0.0.1",
"engines": {
"vscode": "^1.100.0"
2022-07-28 14:48:13 -07:00
},
"categories": [
"Other"
],
"activationEvents": [],
2022-07-28 14:48:13 -07:00
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "notifications-sample.showInfo",
"title": "Show Info Notification",
"category": "Notifications Sample"
},
2022-07-28 15:27:06 -07:00
{
"command": "notifications-sample.showInfoAsModal",
"title": "Show Info Notification As Modal",
"category": "Notifications Sample"
},
2022-07-28 14:48:13 -07:00
{
"command": "notifications-sample.showWarning",
"title": "Show Warning Notification",
"category": "Notifications Sample"
},
{
"command": "notifications-sample.showWarningWithActions",
"title": "Show Warning Notification With Actions",
"category": "Notifications Sample"
},
2022-07-28 14:48:13 -07:00
{
"command": "notifications-sample.showError",
"title": "Show Error Notification",
"category": "Notifications Sample"
},
{
"command": "notifications-sample.showProgress",
"title": "Show Progress Notification",
"category": "Notifications Sample"
2022-07-29 10:21:21 -07:00
},
{
"command": "notifications-sample.showAll",
"title": "Show All Notifications",
"category": "Notifications Sample"
2022-07-28 14:48:13 -07:00
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint"
2022-07-28 14:48:13 -07:00
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@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-07-28 14:48:13 -07:00
}
2025-08-06 23:43:14 -07:00
}