-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
86 lines (86 loc) · 2.45 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
{
"name": "overtype",
"version": "0.2.0",
"displayName": "Overtype",
"description": "Provides insert/overtype mode.",
"publisher": "adammaras",
"categories": [
"Other"
],
"keywords": [
"overtype",
"overwrite",
"insert"
],
"icon": "images/icon.svg",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"license": "BSD-2-Clause",
"homepage": "https://github.com/AdamMaras/vscode-overtype",
"bugs": "https://github.com/AdamMaras/vscode-overtype/issues",
"repository": {
"type": "git",
"url": "https://github.com/AdamMaras/vscode-overtype.git"
},
"main": "./out/extension",
"engines": {
"vscode": "^1.0.0"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Overtype configuration",
"properties": {
"overtype.abbreviatedStatus": {
"type": "boolean",
"default": false,
"description": "Shows an abbreviated overtype status (INS/OVR) in the status line."
},
"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."
}
}
},
"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": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"tslint": "~4.1.0",
"typescript": "^2.1.0",
"vscode": "^1.0.0"
}
}