-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.29 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.29 KB
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
{
"name": "search-talon-commands",
"displayName": "Search Talon Commands",
"publisher": "marcusvoicecoder",
"author": {
"name": "Mark Phillipson",
"email": "MPhillipson0@Gmail.com"
},
"description": "Search and browse 10k+ Talon Voice commands and lists with advanced filtering. Kind of like what can I say but better!",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Mark-Phillipson/TalonCommandSearchExtension"
},
"version": "0.2.6",
"icon": "talon_command_search.png",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"keywords": [
"talon",
"talon voice",
"voice coding",
"speech recognition",
"command search",
"voice commands",
"accessibility",
"productivity"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.80.0",
"@vscode/test-electron": "^2.3.8",
"typescript": "^5.0.0"
},
"contributes": {
"commands": [
{
"command": "talon.searchCommands",
"title": "Talon: Search Commands"
},
{
"command": "talon.refreshIndex",
"title": "Talon: Refresh Index"
},
{
"command": "talon.openListExplorer",
"title": "Talon: Import from Folder"
},
{
"command": "talon.setUserFolder",
"title": "Talon: Set User Folder Path"
}
],
"configuration": {
"title": "Talon Command Search",
"properties": {
"talonSearch.userFolderPath": {
"type": "string",
"default": "",
"description": "Path to Talon user folder. Leave empty for auto-detection. Typically: %APPDATA%\\talon\\user on Windows, ~/.talon/user on Mac/Linux"
},
"talonSearch.enableAutoIndexing": {
"type": "boolean",
"default": true,
"description": "Automatically index Talon files on startup"
},
"talonSearch.maxSearchResults": {
"type": "number",
"default": 500,
"description": "Maximum search results to display"
},
"talonSearch.searchDebounceMs": {
"type": "number",
"default": 3000,
"minimum": 0,
"maximum": 30000,
"description": "Delay in milliseconds before performing search after typing (0-30000ms, default: 3000ms)"
},
"talonSearch.excludedOperatingSystems": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Operating system names to hide from search results when the search view opens. Commands scoped to these operating systems will be excluded unless you manually select an operating system filter."
}
}
},
"keybindings": [
{
"command": "talon.searchCommands",
"key": "ctrl+shift+t",
"mac": "cmd+shift+t"
}
]
},
"activationEvents": [
"onCommand:talon.searchCommands",
"onCommand:talon.refreshIndex",
"onCommand:talon.openListExplorer",
"onCommand:talon.setUserFolder"
]
}