-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.7 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
{
"name": "programming-screen-reader",
"displayName": "Programming Screen Reader Extension",
"description": "A code-aware screen reader layer for programmers.",
"version": "0.0.1",
"publisher": "chronosacaria",
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "programmingScreenReader.readCurrentLine",
"title": "Programming Screen Reader: Read Current Line"
},
{
"command": "programmingScreenReader.readCurrentSymbol",
"title": "Programming Screen Reader: Read Current Symbol"
},
{
"command": "programmingScreenReader.readCurrentScope",
"title": "Programming Screen Reader: Read Current Scope"
},
{
"command": "programmingScreenReader.readDiagnosticsNearCursor",
"title": "Programming Screen Reader: Read Diagnostics Near Cursor"
}
],
"keybindings": [
{
"command": "programmingScreenReader.readCurrentLine",
"key": "ctrl+shift+alt+1",
"when": "editorTextFocus"
},
{
"command": "programmingScreenReader.readCurrentSymbol",
"key": "ctrl+shift+alt+2",
"when": "editorTextFocus"
},
{
"command": "programmingScreenReader.readCurrentScope",
"key": "ctrl+shift+alt+3",
"when": "editorTextFocus"
},
{
"command": "programmingScreenReader.readDiagnosticsNearCursor",
"key": "ctrl+shift+alt+4",
"when": "editorTextFocus"
}
],
"configuration": {
"title": "Programming Screen Reader",
"properties": {
"programmingScreenReader.coreBinaryPath": {
"type": "string",
"default": "",
"scope": "machine",
"description": "Path to the compiled code_reader_core binary. If empty, the extension falls back to the 'cargo run' command."
},
"programmingScreenReader.speechEnabled": {
"type": "boolean",
"default": false,
"description": "Speak returned reader output using the configured speech command."
},
"programmingScreenReader.speechCommand": {
"type": "string",
"default": "spd-say",
"scope": "machine",
"description": "Command used to speak the returned reader output."
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"compile:test": "tsc -p ./tsconfig.test.json",
"test": "npm run compile:test && node --test out-test/test/**/*.test.js"
},
"devDependencies": {
"@types/node": "^22.20.0",
"@types/vscode": "^1.125.0",
"typescript": "^5.9.3"
}
}