-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
205 lines (205 loc) · 5.61 KB
/
package.json
File metadata and controls
205 lines (205 loc) · 5.61 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
{
"name": "doppler-vscode",
"private": true,
"displayName": "Doppler",
"description": "Edit your secrets where you edit your code, with 2 way sync.",
"publisher": "doppler",
"author": "doppler",
"version": "0.0.10",
"license": "Apache-2.0",
"homepage": "https://github.com/dopplerhq/vscode",
"icon": "media/icon.png",
"pricing": "Free",
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"qna": false,
"bugs": {
"url": "https://github.com/dopplerhq/vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dopplerhq/vscode.git"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Doppler",
"properties": {
"doppler.autocomplete.enable": {
"type": "boolean",
"default": false,
"description": "Autocomplete environment variables with secrets from Doppler."
},
"doppler.hover.enable": {
"type": "boolean",
"default": false,
"description": "Show secret from Doppler when hovering over an environment variable."
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "doppler-explorer",
"title": "Doppler",
"icon": "media/sidebar.svg"
}
]
},
"views": {
"doppler-explorer": [
{
"id": "doppler-explorer",
"name": "Doppler",
"icon": "media/sidebar.svg"
}
]
},
"viewsWelcome": [
{
"view": "doppler-explorer",
"contents": "Welcome to Doppler 🎉\nYou will now be able to view, edit, and save your Doppler secrets without leaving VS Code. To get started, connect to Doppler by logging in.\n[Setup Doppler](command:doppler.setup)"
}
],
"menus": {
"view/title": [
{
"command": "doppler.explorer.refresh",
"when": "view == doppler-explorer",
"group": "navigation"
}
],
"editor/title": [
{
"command": "doppler.explorer.editor.config.dashboard",
"args": "",
"group": "navigation",
"when": "resourceScheme == doppler"
}
]
},
"commands": [
{
"command": "doppler.install",
"category": "Doppler",
"title": "Install CLI"
},
{
"command": "doppler.update",
"category": "Doppler",
"title": "Update CLI"
},
{
"command": "doppler.login",
"category": "Doppler",
"title": "Login"
},
{
"command": "doppler.logout",
"category": "Doppler",
"title": "Logout"
},
{
"command": "doppler.setup",
"category": "Doppler",
"title": "Setup"
},
{
"command": "doppler.documentation",
"category": "Doppler",
"title": "Documentation"
},
{
"command": "doppler.explorer.refresh",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "doppler.explorer.editor.config.dashboard",
"category": "Doppler",
"title": "Open Dashboard",
"icon": "$(link-external)"
}
]
},
"scripts": {
"check": "concurrently -i -c green,blue, -n prettier,eslint 'npm run prettier' 'npm run lint'",
"typecheck": "tsc --version && tsc",
"lint": "eslint \"src/**/*.ts\"",
"prettier": "prettier . --check",
"compile-dev": "esbuild `find ./src -not \\( -path ./src/test -prune \\) \\( -name '*.ts' \\)` --format=cjs --platform=node --sourcemap --outdir=./out",
"compile-prod": "esbuild ./src/extension.ts --format=cjs --platform=node --minify --bundle --external:vscode --outfile=out/extension.js",
"watch": "concurrently -i -c green,blue, -n check,build 'npm run check' 'npm run compile-dev -- --watch'",
"test": "npm run compile-dev && cd ./src/test && doppler configure set token '$DOPPLER_TOKEN' --silent && doppler setup -p vscode -c test --scope=. --silent && node ./runTest.js",
"test-local": "DOPPLER_TOKEN=$(doppler configure get token --plain) npm run test",
"package": "npm run compile-prod && vsce package --out=doppler.vsix --no-dependencies",
"install-package": "npm run package && code --install-extension=doppler.vsix",
"login": "vsce login",
"publish": "vsce publish --packagePath=doppler.vsix",
"publish-ovsx": "ovsx publish doppler.vsix"
},
"devDependencies": {
"@types/command-exists": "^1.2.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@types/vscode": "^1.65.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vscode/test-electron": "^2.1.5",
"@vscode/vsce": "^2.19.0",
"concurrently": "^6.3.0",
"esbuild": "^0.16.10",
"eslint": "^8.18.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"ovsx": "^0.8.1",
"prettier": "^2.7.1",
"standard": "^17.1.0",
"typescript": "^4.7.4"
},
"overrides": {
"semver": "^7.5.2"
},
"standard": {
"ignore": [
"/out/test/suite/examples/**"
]
},
"keywords": [
"doppler",
"secretops",
"dotenv",
"dotenv-vault",
"environment variables",
"vault",
"env",
".env",
"environment",
"variables",
"config",
"settings",
"official",
"development",
"productivity",
"secrets",
"sync"
],
"dependencies": {
"axios": "^1.2.1",
"command-exists": "^1.2.9",
"yaml": "^2.1.3"
}
}