-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "python-docs-opener",
"displayName": "Python Docs Opener",
"description": "Open documentation for the current symbol under the cursor in the default web browser",
"version": "1.1.1",
"icon": "static/icon.png",
"engines": {
"vscode": "^1.61.0"
},
"publisher": "ThomasHickman",
"author": {
"name": "ThomasHickman",
"url": "https://www.tkhickman.com"
},
"license": "MIT",
"categories": [
"Programming Languages",
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/ThomasHickman/python-docs-opener.git"
},
"homepage": "https://github.com/ThomasHickman/python-docs-opener",
"keywords": [
"Python",
"Documentation",
"Browser"
],
"activationEvents": [
"onCommand:pythonDocsOpener.getDocsOfSymbol"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "pythonDocsOpener.getDocsOfSymbol",
"title": "Python Docs Opener: Open Documentation of Symbol in Browser Window"
}
],
"keybindings": [
{
"command": "pythonDocsOpener.getDocsOfSymbol",
"key": "shift+f1",
"mac": "shift+f1",
"when": "editorTextFocus"
}
],
"files": [
"src",
"static",
"out"
],
"configuration": {
"title": "Python Docs Opener",
"properties": {
"pythonDocsOpener.additionalLibraryToDocsMappings": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"markdownDescription": "Specifies additional mappings from library names to the online documentation URL.\n\nYou can use the variable `${symbol_name}` to denote the full symbol name. For example, `example.com/docs.html#${symbol_name}` will open `example.com/docs.html#one.two.three` for the symbol `one.two.three`."
}
}
}
},
"extensionKind": [
"workspace"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.61.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@vscode/test-electron": "^1.6.2",
"eslint": "^7.32.0",
"glob": "^7.1.7",
"mocha": "^9.1.1",
"typescript": "^4.4.3"
}
}