-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.08 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
{
"name": "auto-select-pasted-text",
"displayName": "Auto Select Pasted Text",
"description": "Automatically selects text after it's pasted for quick intents and edits.",
"icon": "logo.png",
"version": "0.3.4",
"publisher": "davidcahill",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TagWolf/auto-select-pasted-text.git"
},
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:editor.action.clipboardPasteAction",
"onCommand:type"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "editor.action.clipboardPasteAction",
"title": "Paste and Select"
},
{
"command": "autoSelectPastedText.toggleAutoSelection",
"title": "AutoSelectPastedText: Toggle Auto Selection of Pasted Text"
},
{
"command": "autoSelectPastedText.toggleLogging",
"title": "AutoSelectPastedText: Toggle Logging for Debugging"
},
{
"command": "autoSelectPastedText.toggleTypeDetection",
"title": "AutoSelectPastedText: Toggle Auto Deselection on Typing"
},
{
"command": "autoSelectPastedText.toggleManualSelection",
"title": "AutoSelectPastedText: Toggle Auto Selection for Manually Selected Text (Not Recommended)"
}
],
"configuration": {
"title": "Auto Select Pasted Text",
"properties": {
"autoSelectPastedText.enableAutoSelection": {
"type": "boolean",
"default": true,
"description": "Enable automatic selection of pasted text."
},
"autoSelectPastedText.enableLogging": {
"type": "boolean",
"default": true,
"description": "Enable logging for debugging purposes."
},
"autoSelectPastedText.enableTypeDetection": {
"type": "boolean",
"default": true,
"description": "Automatically deselect text when you start typing after pasting."
},
"autoSelectPastedText.enableManualSelection": {
"type": "boolean",
"default": false,
"description": "Enable the auto-selection behavior for manually selected text (not recommended)."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"typescript": "^4.1.2",
"vscode": "^1.1.37",
"tslint": "^6.1.0",
"@types/node": "^14.14.10",
"@types/mocha": "^2.2.42"
},
"keywords": [
"paste",
"text",
"selection",
"indent",
"auto",
"autoselect",
"autoselectpaste",
"autoselectpasted",
"autoselectpastedtext",
"highlight",
"clipboard",
"editing",
"automation",
"productivity",
"vscode",
"extension",
"code",
"formatting",
"enhancement",
"highlighting",
"tool",
"smart",
"management",
"copy",
"utilities",
"workflow",
"developer",
"indentation",
"chatgpt",
"gpt"
]
}