forked from closedcontour/very-smart-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.13 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
{
"name": "very-smart-select",
"displayName": "Very Smart Select",
"description": "Language-aware smart select; much smarter than the default smart select.",
"version": "0.3.4",
"publisher": "tgreen7",
"repository": "https://github.com/tgreen7/very-smart-select",
"engines": {
"vscode": "^1.21.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:very-smart-select.grow",
"onCommand:very-smart-select.shrink"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "very-smart-select.grow",
"title": "Very Smart Select: Grow the Selection"
},
{
"command": "very-smart-select.shrink",
"title": "Very Smart Select: Shrink the selection"
}
],
"keybindings": [
{
"command": "very-smart-select.grow",
"key": "shift+alt+right",
"mac": "ctrl+shift+cmd+right",
"when": "editorTextFocus"
},
{
"command": "very-smart-select.shrink",
"key": "shift+alt+left",
"mac": "ctrl+shift+cmd+left",
"when": "editorTextFocus"
}
],
"configuration": {
"type": "object",
"title": "Very Smart Select",
"properties": {
"very-smart-select.excludeBrackets": {
"type": "boolean",
"default": true,
"description": "will exclude function/object brackets when expanding."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"simple-git-hooks": ">=2.0.3",
"tslint": "^6.1.3",
"vscode": "^1.1.37"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}