-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.13 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.13 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
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
121
122
123
124
125
126
127
128
129
130
{
"name": "neon-postgres-sync",
"displayName": "Neon Postgres Sync",
"description": "Sync local files with Neon Postgres records (Text-based)",
"version": "0.5.1",
"publisher": "ciuzaak",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/ciuzaak/Neon-Postgres-Sync.git"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "neonSync.syncFile",
"title": "Neon Sync: Sync File"
},
{
"command": "neonSync.swapSyncDirection",
"title": "Swap Sync Direction",
"icon": "$(arrow-swap)"
},
{
"command": "neonSync.configureUrl",
"title": "Neon Sync: Configure Connection URL"
},
{
"command": "neonSync.confirmSync",
"title": "Confirm Sync",
"icon": "$(check)"
},
{
"command": "neonSync.cancelSync",
"title": "Cancel Sync",
"icon": "$(close)"
},
{
"command": "neonSync.openConfigFile",
"title": "Neon Sync: Open Config File"
},
{
"command": "neonSync.openSettings",
"title": "Neon Sync: Open Settings"
},
{
"command": "neonSync.multiPickerSelectAll",
"title": "Neon Sync: Toggle Select All (Multi-Profile Picker)"
}
],
"menus": {
"editor/title": [
{
"command": "neonSync.swapSyncDirection",
"group": "navigation@1",
"when": "neonSync.isSyncing"
},
{
"command": "neonSync.confirmSync",
"group": "navigation@2",
"when": "neonSync.isSyncing"
},
{
"command": "neonSync.cancelSync",
"group": "navigation@3",
"when": "neonSync.isSyncing"
}
],
"commandPalette": [
{
"command": "neonSync.swapSyncDirection",
"when": "neonSync.isSyncing"
},
{
"command": "neonSync.confirmSync",
"when": "neonSync.isSyncing"
},
{
"command": "neonSync.cancelSync",
"when": "neonSync.isSyncing"
},
{
"command": "neonSync.multiPickerSelectAll",
"when": "false"
}
]
},
"configuration": {
"title": "Neon Postgres Sync",
"properties": {}
},
"keybindings": [
{
"command": "neonSync.confirmSync",
"key": "Alt+Enter",
"when": "neonSync.isSyncing"
},
{
"command": "neonSync.swapSyncDirection",
"key": "Alt+S",
"when": "neonSync.isSyncing"
},
{
"command": "neonSync.multiPickerSelectAll",
"key": "Alt+A",
"when": "neonSync.multiPickerActive"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "18.x",
"@types/vscode": "^1.80.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@neondatabase/serverless": "^1.0.2"
}
}