-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
137 lines (137 loc) · 4.36 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "vscode-copy-filename",
"displayName": "Copy filename",
"description": "Simple VS Code plugin that allows you to copy file name or folder name to clipboard from sidebar or opened file label",
"version": "0.1.1",
"license": "MIT",
"publisher": "bradzacher",
"repository": {
"type": "git",
"url": "https://github.com/bradzacher/vscode-copy-filename.git"
},
"author": {
"email": "[email protected]",
"name": "Brad Zacher",
"url": "https://github.com/bradzacher"
},
"scripts": {
"vscode:prepublish": "yarn run clean && yarn run build",
"build": "tsc -b tsconfig.build.json",
"clean": "tsc -b tsconfig.build.json --clean",
"format": "prettier --write \"./**/*.{ts,js,json,md}\" --ignore-path ./.prettierignore",
"lint": "eslint . --ext .js,.ts --ignore-path ./.eslintignore",
"vscode:publish": "yarn vsce publish",
"pretest": "yarn run build",
"test": "node ./out/test/runTest.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"watch": "tsc -b tsconfig.build.json --watch"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/vscode": "^1.30.0",
"eslint-config-brad": "^4.0.0",
"glob": "^7.1.5",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"typescript": "^4.0.3",
"vsce": "^1.69.0",
"vscode-test": "^1.2.2"
},
"//": "vscode extension settings",
"engines": {
"vscode": "^1.32.0"
},
"keywords": [
"sidebar",
"copy-filename",
"clipboard",
"file",
"folder"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.copyFileName",
"onCommand:extension.copyFileNameOfActiveFile",
"onCommand:extension.copyFileNameNoExtension",
"onCommand:extension.copyFileNameNoExtensionOfActiveFile"
],
"extensionKind": [
"ui",
"workspace"
],
"contributes": {
"commands": [
{
"category": "File",
"command": "extension.copyFileName",
"title": "Copy Filename"
},
{
"category": "File",
"command": "extension.copyFileNameOfActiveFile",
"title": "Copy Filename of Active File"
},
{
"category": "File",
"command": "extension.copyFileNameNoExtension",
"title": "Copy Filename Without Extension"
},
{
"category": "File",
"command": "extension.copyFileNameNoExtensionOfActiveFile",
"title": "Copy Filename Without Extension of Active File"
}
],
"menus": {
"commandPalette": [
{
"COMMENT": "This command should only be shown in context menus",
"command": "extension.copyFileName",
"when": "false"
},
{
"COMMENT": "This command should only be shown in context menus",
"command": "extension.copyFileNameNoExtension",
"when": "false"
}
],
"explorer/context": [
{
"command": "extension.copyFileName",
"when": "isFileSystemResource",
"COMMENT": "https://github.com/microsoft/vscode/blob/f74e473238aca7b79c08be761d99a0232838ca4c/src/vs/workbench/contrib/files/browser/fileActions.contribution.ts#L496",
"group": "6_copypath@102"
},
{
"command": "extension.copyFileNameNoExtension",
"when": "isFileSystemResource",
"COMMENT": "https://github.com/microsoft/vscode/blob/f74e473238aca7b79c08be761d99a0232838ca4c/src/vs/workbench/contrib/files/browser/fileActions.contribution.ts#L496",
"group": "6_copypath@103"
}
],
"editor/title/context": [
{
"command": "extension.copyFileName",
"when": "isFileSystemResource",
"COMMENT": "https://github.com/microsoft/vscode/blob/f74e473238aca7b79c08be761d99a0232838ca4c/src/vs/workbench/contrib/files/browser/fileActions.contribution.ts#L169",
"group": "1_cutcopypaste@102"
},
{
"command": "extension.copyFileNameNoExtension",
"when": "isFileSystemResource",
"COMMENT": "https://github.com/microsoft/vscode/blob/f74e473238aca7b79c08be761d99a0232838ca4c/src/vs/workbench/contrib/files/browser/fileActions.contribution.ts#L169",
"group": "1_cutcopypaste@103"
}
]
}
},
"main": "./dist/extension.js",
"galleryBanner": {
"color": "#1c2237",
"theme": "dark"
}
}