forked from AdamMaras/vscode-overtype
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
106 lines (106 loc) · 3.3 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
{
"name": "overtype",
"version": "0.5.0",
"displayName": "Overtype",
"description": "Provides insert/overtype mode.",
"publisher": "DrMerfy",
"categories": [
"Other"
],
"keywords": [
"overtype",
"overwrite",
"insert"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"license": "BSD-2-Clause",
"homepage": "https://github.com/DrMerfy/vscode-overtype",
"bugs": "https://github.com/DrMerfy/vscode-overtype/issues",
"repository": {
"type": "git",
"url": "https://github.com/DrMerfy/vscode-overtype"
},
"main": "./out/extension",
"engines": {
"vscode": "^1.55.0"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Overtype configuration",
"properties": {
"overtype.paste": {
"type": "boolean",
"default": false,
"description": "When in overtype mode, uses overtype behavior when pasting text."
},
"overtype.perEditor": {
"type": "boolean",
"default": false,
"description": "Sets the insert/overtype mode per editor."
},
"overtype.secondaryCursorStyle": {
"type": "string",
"default": "block",
"description": "Sets the overtype cursor style."
},
"overtype.labelInsertMode": {
"type": "string",
"default": "Insert",
"description": "Label text in the status bar shown during Insert Mode, may be empty to hide the status."
},
"overtype.labelOvertypeMode": {
"type": "string",
"default": "Overtype",
"description": "Label text in the status bar shown during Overtype Mode, may be empty."
}
}
},
"commands": [
{
"command": "overtype.toggle",
"title": "Toggle Insert/Overtype"
}
],
"keybindings": [
{
"command": "overtype.toggle",
"key": "insert",
"when": "editorFocus"
},
{
"command": "overtype.toggle",
"key": "ctrl+shift+i",
"mac": "cmd+shift+i",
"when": "editorFocus"
}
]
},
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .ts src",
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"create_package": "vsce package"
},
"devDependencies": {
"@types/vscode": "1.55.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^44.0.2",
"typescript": "4.5.4"
},
"dependencies": {
"vsce": "^2.14.0"
}
}