-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "copy-python-path",
"displayName": "Copy Python Path",
"description": "Copy a file Python path",
"version": "1.0.4",
"publisher": "yardensachs",
"repository": "https://github.com/yardensachs/vscode-copy-python-path",
"engines": {
"vscode": "^1.21.0"
},
"galleryBanner": {
"color": "#ffeebe",
"theme": "light"
},
"icon": "icon.png",
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.copyPyPath"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.copyPyPath",
"title": "Copy Python Path of Active File"
}
],
"menus": {
"editor/context": [
{
"when": "resourceLangId == python",
"command": "extension.copyPyPath",
"group": "9_cutcopypaste"
}
]
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^1.1.21"
},
"dependencies": {
"copy-paste": "^1.3.0"
}
}