-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.18 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
{
"name": "copy-file-name",
"displayName": "Copy file name",
"description": "Copies the name of the currently opened file to the clipboard.",
"version": "1.2.0",
"publisher": "nemesv",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"homepage": "https://github.com/nemesv/vscode-copy-file-name/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/nemesv/vscode-copy-file-name.git"
},
"bugs": {
"url": "https://github.com/nemesv/vscode-copy-file-name/issues"
},
"activationEvents": [
"onCommand:copy-file-name.copyFileName",
"onCommand:copy-file-name.copyFileNameWithExtension"
],
"main": "./out/src/extension",
"contributes": {
"keybindings": [
{
"command": "copy-file-name.copyFileName",
"key": "ctrl+alt+f",
"mac": "cmd+alt+f",
"when": "editorTextFocus"
},
{
"command": "copy-file-name.copyFileNameWithExtension",
"key": "ctrl+alt+e",
"mac": "cmd+alt+e",
"when": "editorTextFocus"
}
],
"commands": [
{
"command": "copy-file-name.copyFileName",
"title": "Copy File Name"
},
{
"command": "copy-file-name.copyFileNameWithExtension",
"title": "Copy File Name: with extensions"
}
],
"menus": {
"editor/title/context": [
{
"command": "copy-file-name.copyFileName",
"group": "1_cutcopypaste@10"
},
{
"command": "copy-file-name.copyFileNameWithExtension",
"group": "1_cutcopypaste@11"
}
],
"explorer/context": [
{
"command": "copy-file-name.copyFileName",
"group": "6_copypath@100"
},
{
"command": "copy-file-name.copyFileNameWithExtension",
"group": "6_copypath@110"
}
]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^3.4.5",
"vscode": "^1.1.33",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {}
}