diff --git a/package.json b/package.json index a756284..5c6ca68 100644 --- a/package.json +++ b/package.json @@ -14,10 +14,23 @@ ], "main": "./out/extension.js", "contributes": { - "commands": [ + "configuration":[ { - "command": "gitcheck.helloWorld", - "title": "Hello World" + "title": "Git User Check", + "properties": { + "gitcheck.domain": { + "type": "string", + "description": "remote domain for check" + }, + "gitcheck.user": { + "type":"string", + "description": "Username for gitcheck domain" + }, + "gitcheck.email": { + "type":"string", + "description": "Email for gitcheck domain" + } + } } ] },