-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
154 lines (154 loc) · 4.6 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "auto-semicolon-vscode",
"displayName": "Auto Semicolon",
"description": "A handy tool to make programming delicious. All programming languages include both `Semicolon separated` and `Non-Semicolon separated` supported.",
"version": "1.5.4",
"publisher": "myaaghubi",
"license": "GPL-3.0",
"icon": "icon.png",
"bugs": {
"url": "https://github.com/myaaghubi/Auto-Semicolon-VSCode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/myaaghubi/Auto-Semicolon-VSCode"
},
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Other"
],
"keywords": [
"helper",
"auto",
"handy",
"comment",
"auto-semicolon",
"semicolon",
"php",
"perl",
"javascript",
"typescript",
"c#",
"c",
"c++",
"java",
"dart",
"r",
"swift",
"go",
"python",
"pascal",
"delphi",
"shell",
"bash",
"bat",
"scala",
"kotlin",
"keybindings",
"shortcut"
],
"activationEvents": [
"onStartupFinished",
"onCommand:auto-semicolon-vscode.position-insert-semicolon",
"onCommand:auto-semicolon-vscode.auto-insert-semicolon",
"onCommand:auto-semicolon-vscode.auto-insert-semicolon-fte"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "auto-semicolon-vscode.position-insert-semicolon",
"title": "Insert Manually",
"category": "Auto Semicolon"
},
{
"command": "auto-semicolon-vscode.auto-insert-semicolon",
"title": "Auto Insert",
"category": "Auto Semicolon"
},
{
"command": "auto-semicolon-vscode.auto-insert-semicolon-fte",
"title": "Insert Force To The End",
"category": "Auto Semicolon"
}
],
"keybindings": [
{
"command": "auto-semicolon-vscode.position-insert-semicolon",
"key": "alt+; ;",
"mac": "alt+; ;",
"when": "editorTextFocus"
},
{
"command": "auto-semicolon-vscode.auto-insert-semicolon",
"key": ";",
"mac": ";",
"when": "editorTextFocus"
},
{
"command": "auto-semicolon-vscode.auto-insert-semicolon-fte",
"key": "alt+; alt+;",
"mac": "alt+; alt+;",
"when": "editorTextFocus"
}
],
"configuration": {
"title": "Auto Semicolon",
"properties": {
"autoSemicolon.autoInsertSemicolon.unallowedEnds": {
"default": ";,{,}",
"description": "For lines ended to characters above, apply `Auto Move` instead of `Auto Insert Semicolon` (comma-separated).",
"type": "string"
},
"autoSemicolon.supportedLanguageId.autoInsertSemicolon": {
"default": "javascript,typescript,php,perl,c,objective-c,cpp,objective-cpp,csharp,dart,java,swift,ruby",
"description": "Languages (language-ids, comma-separated) supported for `AutoInsertSemicolon`.\nLanguages not included in both of the lists will be ignored via this extension.",
"type": "string"
},
"autoSemicolon.supportedLanguageId.autoMoveEnable": {
"default": true,
"description": "`Auto Move` feature?",
"type": "boolean"
},
"autoSemicolon.supportedLanguageId.autoMoveFormats": {
"default": "go,python,pascal,delphi,bash,shellscript,bat,scala,kotlin,r,fsharp",
"description": "Languages (language-ids, comma-separated) supported for `Auto Move To End` (happens by pressing `;`) .\nLanguages not included in both of the lists will be ignored via this extension.",
"type": "string"
},
"autoSemicolon.supportedLanguageId.ignores.quotes": {
"default": true,
"description": "Ignore while in quotes?",
"type": "boolean"
},
"autoSemicolon.supportedLanguageId.ignores.theForStatement": {
"default": true,
"description": "Consider `for (..;..;..)` statement",
"type": "boolean"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.31.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vscode/test-electron": "^2.2.3",
"eslint": "^8.34.0",
"glob": "^10.4.5",
"mocha": "^10.7.3",
"typescript": "^4.9.5"
}
}