-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json.d.ts
119 lines (119 loc) · 3.65 KB
/
package.json.d.ts
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
/** Generated with `./json-d-ts.js` */
declare const data: {
"name": "concise-syntax",
"displayName": "Concise Syntax",
"description": "Hide unnecessary syntax or markup from programming languages",
"version": "0.0.1",
"publisher": "kauderk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kauderk/concise-syntax"
},
"bugs": {
"url": "https://github.com/kauderk/concise-syntax/issues"
},
"type": "commonjs",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Programming Languages"
],
"main": "./out/extension",
"activationEvents": [
"onStartupFinished"
],
"scripts": {
"watch": "ts-node vite.config.custom.ts --watch",
"vscode:prepublish": "ts-node vite.config.custom.ts",
"vscode:uninstall": "node ./out/uninstall"
},
"contributes": {
"commands": [
{
"command": "extension.reload",
"title": "Mount Extension",
"category": "Concise Syntax",
"enablement": "extension.disposed"
},
{
"command": "extension.disposeExtension",
"title": "Dispose Extension (free memory)",
"category": "Concise Syntax",
"enablement": "!extension.disposed"
},
{
"command": "extension.toggle",
"title": "Toggle",
"category": "Concise Syntax",
"enablement": "!extension.disposed && extension.calibrated && extension.running"
},
{
"command": "extension.calibrate",
"title": "Calibrate",
"category": "Concise Syntax",
"enablement": "!extension.disposed && !extension.calibrateWindow && extension.running"
},
{
"command": "extension.calibrateWindow",
"title": "Calibrate Window",
"category": "Concise Syntax",
"enablement": "!extension.disposed && extension.calibrateWindow && extension.running"
},
{
"command": "extension.reset",
"title": "Reset then reload (dev)",
"category": "Concise Syntax"
}
],
"configuration": {
"title": "Concise Syntax",
"properties": {
"concise-syntax.base": {
"type": "number",
"default": 0,
"description": "Base opacity for all concise-syntax characters in the document."
},
"concise-syntax.selected": {
"type": "number",
"default": 0.5,
"description": "When a line has any selected range: all concise-syntax characters in the line gain opacity."
},
"concise-syntax.current": {
"type": "number",
"default": 0.6,
"description": "When a line has focus/caret: all concise-syntax characters in the line gain opacity."
},
"concise-syntax.hoverAll": {
"type": "number",
"default": 0.7,
"description": "When a concise-syntax character is hovered in the document: all concise-syntax characters gain opacity."
},
"concise-syntax.hoverLine": {
"type": "number",
"default": 1,
"description": "When a line is hovered in the document: all concise-syntax characters in the line gain opacity."
},
"concise-syntax.bleedCurrentLines": {
"type": "number",
"default": 1,
"description": "When a line has focus/caret: how many lines above and below should gain opacity."
}
}
},
"configurationDefaults": {
"files.readonlyInclude": {
"**/*concise-syntax*/out/syntax.tsx": true
}
}
},
"devDependencies": {
"@types/vscode": "^1.70.0",
"@types/node": "^20.10.5",
"ts-node": "^10.9.2",
"vite": "4.5.1",
"vscode": "^1.1.37"
}
}
export = data