-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 2.83 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
118
119
120
{
"name": "cosmic-cursor",
"displayName": "Manta's Cosmic Cursor",
"description": "Move cursor brilliantly.",
"version": "8.0.0",
"publisher": "thisismanta",
"categories": [
"Keymaps",
"Other"
],
"keywords": [
"cursor",
"keybindings"
],
"repository": {
"url": "https://github.com/ThisIsManta/vscode-cosmic-cursor"
},
"bugs": {
"url": "https://github.com/ThisIsManta/vscode-cosmic-cursor/issues"
},
"icon": "docs/logo.png",
"galleryBanner": {
"color": "#212121",
"theme": "dark"
},
"engines": {
"node": ">=20.0.0",
"vscode": "^1.92.0"
},
"activationEvents": [
"onStartupFinished"
],
"main": "dist/extension.js",
"contributes": {
"keybindings": [
{
"command": "cosmicCursor.cursorUp",
"key": "ctrl+up",
"mac": "alt+up",
"when": "editorTextFocus"
},
{
"command": "cosmicCursor.cursorDown",
"key": "ctrl+down",
"mac": "alt+down",
"when": "editorTextFocus"
},
{
"command": "cosmicCursor.smartSelect.expand",
"key": "ctrl+shift+up",
"mac": "alt+shift+up",
"when": "editorTextFocus"
},
{
"command": "cosmicCursor.smartSelect.shrink",
"key": "ctrl+shift+down",
"mac": "alt+shift+down",
"when": "editorTextFocus"
},
{
"command": "cosmicCursor.cursorWordLeft",
"key": "ctrl+left",
"mac": "alt+left",
"when": "editorTextFocus"
},
{
"command": "cosmicCursor.cursorWordRight",
"key": "ctrl+right",
"mac": "alt+right",
"when": "editorTextFocus"
},
{
"command": "cosmicCursor.cursorWordLeftSelect",
"key": "ctrl+shift+left",
"mac": "alt+shift+left",
"when": "editorTextFocus"
},
{
"command": "cosmicCursor.cursorWordRightSelect",
"key": "ctrl+shift+right",
"mac": "alt+shift+right",
"when": "editorTextFocus"
},
{
"command": "cosmicCursor.deleteLeft",
"key": "backspace",
"when": "editorTextFocus && !editorReadonly"
},
{
"command": "cosmicCursor.deleteRight",
"key": "delete",
"when": "editorTextFocus && !editorReadonly"
},
{
"command": "editor.action.deleteLines",
"key": "shift+delete",
"when": "editorTextFocus && !editorReadonly"
}
]
},
"scripts": {
"postinstall": "code --install-extension connor4312.esbuild-problem-matchers",
"build": "esbuild edge/extension.ts --bundle --platform=node --outfile=dist/extension.js --external:vscode --external:typescript --format=cjs",
"watch": "npm run build -- --watch --sourcemap",
"vscode:prepublish": "npm run build -- --minify",
"version": "npx @vscode/vsce publish --pat $VSCE_PUBLISH_TOKEN"
},
"devDependencies": {
"@thisismanta/semantic-version": "^9.1.0",
"@types/lodash": "^4.17.13",
"@types/node": "^20.0.0",
"@types/vscode": "^1.92.0",
"esbuild": "^0.24.0",
"lefthook": "^1.8.4",
"lodash": "^4.17.21"
},
"dependencies": {
"typescript": "^5.7.2"
}
}