-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.58 KB
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
{
"name": "code-surround",
"version": "0.0.1",
"description": "VSCode extension to surround your code with various characters or tags.",
"main": "./dist/extension.js",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -watch -p .",
"package": "vsce package"
},
"keywords": [
"vscode",
"code",
"surround",
"plugin"
],
"publisher": "askorupskyy",
"engines": {
"vscode": "^1.90.0"
},
"repository": {
"type": "git",
"url": "https://github.com/askorupskyy/code-surround"
},
"categories": ["Other"],
"activationEvents": ["onCommand:surround.add","onCommand:surround.remove","onCommand:surround.change"],
"contributes": {
"commands": [
{
"command": "surround.add",
"title": "Surround: Add"
},
{
"command": "surround.remove",
"title": "Surround: Remove"
},
{
"command": "surround.change",
"title": "Surround: Change"
}
]
},
"keybindings": [
{
"command": "surround.add",
"key": "cmd+s+a",
"when": "editorTextFocus"
},
{
"command": "surround.remove",
"key": "cmd+s+d",
"when": "editorTextFocus"
},
{
"command": "surround.change",
"key": "cmd+s+r",
"when": "editorTextFocus"
}
],
"author": "askorupskyy",
"license": "ISC",
"devDependencies": {
"@eslint/json": "^0.13.2",
"@types/node": "^24.9.1",
"eslint": "^9.38.0",
"globals": "^16.4.0",
"jiti": "^2.6.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vscode": "^1.1.37"
}
}