forked from iann0036/vscode-aws-cloudshell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
148 lines (148 loc) · 4.47 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
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
{
"name": "aws-cloudshell",
"displayName": "AWS CloudShell plugin for VS Code",
"description": "Open AWS CloudShell terminals within VS Code.",
"author": {
"name": "Ian Mckay",
"email": "[email protected]"
},
"version": "0.1.6",
"publisher": "iann0036",
"icon": "resources/logo_128.png",
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Other"
],
"maintainers": [
"Ian Mckay <[email protected]>"
],
"contributors": [
"Ian Mckay <[email protected]>"
],
"activationEvents": [
"*"
],
"repository": {
"type": "git",
"url": "https://github.com/iann0036/vscode-aws-cloudshell.git"
},
"bugs": {
"url": "https://github.com/iann0036/vscode-aws-cloudshell/issues"
},
"keywords": [
"AWS",
"CloudShell",
"terminal",
"collaboration"
],
"galleryBanner": {
"color": "#3c3c3c",
"theme": "dark"
},
"main": "./out/extension",
"contributes": {
"menus": {
"view/title": [
{
"command": "awscloudshell.startSession",
"when": "view == aws-cloudshell-view-1-sessions",
"group": "navigation"
}
],
"explorer/context": [
{
"command": "awscloudshell.uploadFile",
"when": "resourceScheme == file && config.awscloudshell.enableUpload == true"
}
]
},
"commands": [
{
"command": "awscloudshell.startSession",
"title": "Start Session",
"category": "AWS CloudShell",
"icon": {
"light": "resources/icons/new-light.png",
"dark": "resources/icons/new-dark.png"
}
},
{
"command": "awscloudshell.uploadFile",
"title": "Upload file to AWS CloudShell",
"category": "AWS CloudShell"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "aws-cloudshell-vc",
"title": "AWS CloudShell",
"icon": "resources/sidebar.png"
}
]
},
"views": {
"aws-cloudshell-vc": [
{
"id": "aws-cloudshell-view-1-sessions",
"name": "Sessions"
}
]
},
"configuration": {
"type": "object",
"title": "AWS CloudShell Configuration",
"properties": {
"awscloudshell.region": {
"type": "string",
"default": "us-east-1",
"description": "The AWS CloudShell region."
},
"awscloudshell.profile": {
"type": "string",
"default": "",
"description": "The profile to use for an INI credential provider."
},
"awscloudshell.assumeRole": {
"type": "string",
"default": "",
"description": "The ARN of a role to assume into."
},
"awscloudshell.enableUpload": {
"type": "boolean",
"default": false,
"description": "Enable upload file menu option from Explorer view."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.34.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.0.0",
"@aws-sdk/credential-provider-node": "^3.0.0",
"@aws-sdk/credential-provider-process": "^3.0.0",
"@aws-sdk/shared-ini-file-loader": "^3.0.0",
"aws4": "^1.11.0",
"axios": "^0.21.0",
"axios-cookiejar-support": "^1.0.1",
"form-data": "^3.0.0",
"tough-cookie": "^4.0.0",
"utf-8-validate": "^5.0.3",
"xml2js": "^0.4.23"
}
}