-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "pythondoc",
"displayName": "PyDoc",
"description": "Generates the docstring for functions and classes",
"icon": "assets/code-comments.jpg",
"version": "0.5.0",
"publisher": "reddevil",
"engines": {
"vscode": "^1.93.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hegde5/VS-Code-PyDoc-Extension"
},
"categories": [
"Programming Languages",
"Formatters",
"Snippets",
"Other"
],
"activationEvents": [
"onCommand:extension.docstring"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.docstring",
"title": "PyDoc: Generate function docstring"
}
],
"keybindings": [
{
"command": "extension.docstring",
"key": "ctrl+alt+b"
}
],
"menus": {
"editor/context": [
{
"command": "extension.docstring"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/vscode": "^1.93.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"tslint": "^5.8.0",
"typescript": "^4.9.4"
}
}