-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 2.48 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
{
"name": "typopo-vscode",
"displayName": "Typopo",
"description": "Fix frequent microtypography errors in multiple languages in VS Code with Typopo. Write neat texts without bothering about typography rules. Typopo works for English, German, Slovak, Czech and Rusyn language.",
"version": "1.3.4",
"publisher": "brano",
"icon": "assets/typopo--logotype--128.png",
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Other"
],
"sponsor": {
"url": "https://ko-fi.com/branosandala"
},
"keywords": [
"typopo-vscode",
"microtypography",
"typography",
"typos",
"typo",
"English",
"German",
"Slovak",
"Czech",
"Rusyn",
"keybindings"
],
"repository": {
"type": "git",
"url": "https://github.com/surfinzap/typopo-vscode.git"
},
"activationEvents": [
"onCommand:typopo-vscode.fixTypos"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "typopo-vscode.fixTypos",
"title": "Fix Typos",
"category": "Typopo"
}
],
"keybindings": [
{
"command": "typopo-vscode.fixTypos",
"key": "ctrl+alt+T",
"mac": "ctrl+cmd+T",
"when": "editorTextFocus"
}
],
"configuration": {
"title": "Typopo",
"properties": {
"typopo.language": {
"type": "string",
"enum": [
"en-us",
"de-de",
"cs",
"rue",
"sk"
],
"enumDescriptions": [
"English (US) (en-us)",
"German (de-de)",
"Czech (cs)",
"Rusyn (rue)",
"Slovak (sk)"
],
"default": "en-us",
"description": "Select a default language to fix typos"
},
"typopo.removeLines": {
"type": "boolean",
"default": false,
"description": "Remove empty lines between paragraphs"
},
"typopo.removeWhitespacesBeforeMarkdownList": {
"type": "boolean",
"default": false,
"description": "Remove whitespaces before a nested Markdown list"
},
"typopo.keepMarkdownCodeBlocks": {
"type": "boolean",
"default": true,
"description": "Keep Markdown `code blocks` in your Markdown files"
}
}
}
},
"scripts": {
"lint": "eslint extension.js"
},
"devDependencies": {
"eslint": "^9.11.0"
},
"dependencies": {
"typopo": "^2.5.8"
}
}