Backup-bdg's picture
Upload 964 files
51ff9e5 verified
raw
history blame contribute delete
587 Bytes
{
"name": "openhands-hello-world",
"displayName": "OpenHands Hello World",
"description": "A simple hello world extension for OpenHands",
"version": "0.0.1",
"publisher": "openhands",
"engines": {
"vscode": "^1.98.2"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:openhands-hello-world.helloWorld"
],
"main": "./extension.js",
"contributes": {
"commands": [{
"command": "openhands-hello-world.helloWorld",
"title": "Hello World from OpenHands"
}]
}
}