dorky 3.0.0 → 3.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,151 +0,0 @@
1
- {
2
- "name": "dorky-extension",
3
- "displayName": "dorky-extension",
4
- "description": "Extension for dorky",
5
- "version": "0.0.4",
6
- "publisher": "trishantpahwa",
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://github.com/trishantpahwa/dorky.git"
10
- },
11
- "engines": {
12
- "vscode": "^1.108.1"
13
- },
14
- "categories": [
15
- "Other"
16
- ],
17
- "activationEvents": [],
18
- "main": "./extension.js",
19
- "contributes": {
20
- "viewsContainers": {
21
- "activitybar": [
22
- {
23
- "id": "dorky-sidebar",
24
- "title": "Dorky",
25
- "icon": "media/logo.svg"
26
- }
27
- ]
28
- },
29
- "views": {
30
- "dorky-sidebar": [
31
- {
32
- "id": "dorky.filesView",
33
- "name": "Files"
34
- }
35
- ]
36
- },
37
- "viewsWelcome": [
38
- {
39
- "view": "dorky.filesView",
40
- "contents": "No Dorky project found in this workspace.\n[Initialize Project](command:dorky-extension.init)",
41
- "when": "!dorky.initialized"
42
- }
43
- ],
44
- "commands": [
45
- {
46
- "command": "dorky-extension.init",
47
- "title": "Dorky: Initialize Project",
48
- "icon": "$(zap)"
49
- },
50
- {
51
- "command": "dorky-extension.add",
52
- "title": "Dorky: Add Files",
53
- "icon": "$(add)"
54
- },
55
- {
56
- "command": "dorky-extension.rmFile",
57
- "title": "Unstage",
58
- "icon": "$(remove)"
59
- },
60
- {
61
- "command": "dorky-extension.push",
62
- "title": "Dorky: Push",
63
- "icon": "$(cloud-upload)"
64
- },
65
- {
66
- "command": "dorky-extension.pull",
67
- "title": "Dorky: Pull",
68
- "icon": "$(cloud-download)"
69
- },
70
- {
71
- "command": "dorky-extension.listRemote",
72
- "title": "Dorky: List Remote Files",
73
- "icon": "$(list-flat)"
74
- },
75
- {
76
- "command": "dorky-extension.refresh",
77
- "title": "Dorky: Refresh",
78
- "icon": "$(refresh)"
79
- },
80
- {
81
- "command": "dorky-extension.destroy",
82
- "title": "Dorky: Destroy Project",
83
- "icon": "$(trash)"
84
- }
85
- ],
86
- "menus": {
87
- "view/title": [
88
- {
89
- "command": "dorky-extension.add",
90
- "when": "view == dorky.filesView && dorky.initialized",
91
- "group": "navigation@1"
92
- },
93
- {
94
- "command": "dorky-extension.push",
95
- "when": "view == dorky.filesView && dorky.initialized",
96
- "group": "navigation@2"
97
- },
98
- {
99
- "command": "dorky-extension.pull",
100
- "when": "view == dorky.filesView && dorky.initialized",
101
- "group": "navigation@3"
102
- },
103
- {
104
- "command": "dorky-extension.listRemote",
105
- "when": "view == dorky.filesView && dorky.initialized",
106
- "group": "navigation@4"
107
- },
108
- {
109
- "command": "dorky-extension.refresh",
110
- "when": "view == dorky.filesView",
111
- "group": "navigation@5"
112
- },
113
- {
114
- "command": "dorky-extension.destroy",
115
- "when": "view == dorky.filesView && dorky.initialized",
116
- "group": "navigation@6"
117
- }
118
- ],
119
- "view/item/context": [
120
- {
121
- "command": "dorky-extension.rmFile",
122
- "when": "view == dorky.filesView && viewItem == stagedFile",
123
- "group": "inline"
124
- }
125
- ]
126
- }
127
- },
128
- "scripts": {
129
- "lint": "eslint .",
130
- "package": "vsce package",
131
- "pretest": "npm run lint",
132
- "test": "vscode-test"
133
- },
134
- "devDependencies": {
135
- "@types/vscode": "^1.108.1",
136
- "@types/mocha": "^10.0.10",
137
- "@types/node": "22.x",
138
- "@vscode/test-cli": "^0.0.12",
139
- "@vscode/test-electron": "^2.5.2",
140
- "@vscode/vsce": "^3.0.0",
141
- "eslint": "^9.39.2"
142
- },
143
- "dependencies": {
144
- "@aws-sdk/client-s3": "^3.679.0",
145
- "@google-cloud/local-auth": "^3.0.1",
146
- "glob": "^11.1.0",
147
- "googleapis": "^144.0.0",
148
- "md5": "^2.3.0",
149
- "mime-types": "^2.1.35"
150
- }
151
- }