-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.28 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
{
"activationEvents": [
"onCommand:yourCommandId",
"onLanguage:yourLanguageId"
],
"contributes": {
"commands": [
{
"command": "extension.randomFile",
"title": "Open a random File"
},
{
"command": "extension.randomTab",
"title": "Show a random tab"
}
],
"configuration": {
"title": "Open a random file",
"properties": {
"randomFile.extensions": {
"type": "array",
"default": [
".htm",
".html",
".md",
".txt",
".asm",
".s",
".c",
".cpp",
".h",
".cs",
".dart",
".go",
".jai",
".java",
".js",
".jsx",
".ts",
".tsx",
".kt",
".lua",
".odin",
".php",
".pl",
".py",
".rb",
".rs",
".sh",
".swift",
".zig"
],
"description": "Only choose files with these extensions"
},
"randomFile.excludeDirs": {
"type": "array",
"default": [
"node_modules"
],
"description": "Exclude these directories"
}
}
}
},
"description": "Open a random file from the current workspace",
"displayName": "Random File",
"engines": {
"vscode": "^1.7.5"
},
"main": "./out/extension.js",
"name": "random-file",
"publisher": "hippietrail",
"repository": {
"type": "git",
"url": "https://github.com/hippietrail/vscode-random-file.git"
},
"version": "0.9.0"
}