-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 863 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 863 Bytes
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
{
"name": "inspect-python",
"main": "./lib/inspect-python",
"version": "0.1.0",
"description": "A less-distracting alternative to the common \"go-to-definition\" functionality.",
"keywords": [
"inspect",
"python",
"go-to-definition",
"peek-definition",
"quick-edit",
"code-peek",
"preview",
"inline",
"browse",
"tree",
"nested"
],
"providedServices": {
"hyperclick.provider": {
"versions": {
"0.0.0": "getHyperclickProvider"
}
}
},
"consumedServices": {
"hyperclick.observeTextEditor": {
"versions": {
"0.0.0": "consumeObserveTextEditor"
}
}
},
"repository": "https://github.com/franekp/atom-inspect-python",
"license": "GNU Affero General Public License Version 3",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {}
}