|
52 | 52 | "main": "./dist/src/extensionNode",
|
53 | 53 | "browser": "./dist/src/extensionWeb",
|
54 | 54 | "engines": "This field will be autopopulated from the core module during debugging and packaging.",
|
55 |
| - "contributes": "This field will be autopopulated from the core module during debugging and packaging.", |
56 | 55 | "scripts": {
|
57 | 56 | "vscode:prepublish": "npm run clean && npm run buildScripts && webpack --mode production",
|
58 |
| - "buildScripts": "npm run generateNonCodeFiles && npm run copyFiles && tsc -p ./ --noEmit", |
| 57 | + "buildScripts": "npm run generateNonCodeFiles && npm run copyFiles && npm run generateSettings && tsc -p ./ --noEmit", |
59 | 58 | "generateNonCodeFiles": "ts-node ../../scripts/generateNonCodeFiles.ts",
|
60 | 59 | "copyFiles": "ts-node ./scripts/build/copyFiles.ts",
|
61 | 60 | "clean": "ts-node ../../scripts/clean.ts dist/ LICENSE NOTICE quickStart*",
|
|
70 | 69 | "newChange": "ts-node ../../scripts/newChange.ts",
|
71 | 70 | "watch": "npm run clean && npm run buildScripts && tsc -watch -p ./",
|
72 | 71 | "copyPackageJson": "ts-node ./scripts/build/handlePackageJson",
|
73 |
| - "restorePackageJson": "ts-node ./scripts/build/handlePackageJson --restore" |
| 72 | + "restorePackageJson": "ts-node ./scripts/build/handlePackageJson --restore", |
| 73 | + "generateSettings": "ts-node ../../scripts/generateSettings.ts" |
| 74 | + }, |
| 75 | + "contributes": { |
| 76 | + "configuration": { |
| 77 | + "type": "object", |
| 78 | + "title": "%AWS.productName%", |
| 79 | + "cloud9": { |
| 80 | + "cn": { |
| 81 | + "title": "%AWS.productName.cn%" |
| 82 | + } |
| 83 | + }, |
| 84 | + "properties": { |
| 85 | + "aws.profile": { |
| 86 | + "type": "string", |
| 87 | + "deprecationMessage": "The current profile is now stored internally by the Toolkit.", |
| 88 | + "description": "%AWS.configuration.profileDescription%" |
| 89 | + }, |
| 90 | + "aws.ecs.openTerminalCommand": { |
| 91 | + "type": "string", |
| 92 | + "default": "/bin/sh", |
| 93 | + "markdownDescription": "%AWS.configuration.description.ecs.openTerminalCommand%" |
| 94 | + }, |
| 95 | + "aws.iot.maxItemsPerPage": { |
| 96 | + "type": "number", |
| 97 | + "default": 100, |
| 98 | + "minimum": 1, |
| 99 | + "maximum": 250, |
| 100 | + "markdownDescription": "%AWS.configuration.description.iot.maxItemsPerPage%" |
| 101 | + }, |
| 102 | + "aws.s3.maxItemsPerPage": { |
| 103 | + "type": "number", |
| 104 | + "default": 300, |
| 105 | + "minimum": 3, |
| 106 | + "maximum": 1000, |
| 107 | + "markdownDescription": "%AWS.configuration.description.s3.maxItemsPerPage%" |
| 108 | + }, |
| 109 | + "aws.samcli.location": { |
| 110 | + "type": "string", |
| 111 | + "scope": "machine", |
| 112 | + "default": "", |
| 113 | + "markdownDescription": "%AWS.configuration.description.samcli.location%" |
| 114 | + }, |
| 115 | + "aws.samcli.lambdaTimeout": { |
| 116 | + "type": "number", |
| 117 | + "default": 90000, |
| 118 | + "markdownDescription": "%AWS.configuration.description.samcli.lambdaTimeout%" |
| 119 | + }, |
| 120 | + "aws.samcli.legacyDeploy": { |
| 121 | + "type": "boolean", |
| 122 | + "default": false, |
| 123 | + "markdownDescription": "%AWS.configuration.description.samcli.legacyDeploy%" |
| 124 | + }, |
| 125 | + "aws.telemetry": { |
| 126 | + "type": "boolean", |
| 127 | + "default": true, |
| 128 | + "markdownDescription": "%AWS.configuration.description.telemetry%", |
| 129 | + "cloud9": { |
| 130 | + "cn": { |
| 131 | + "markdownDescription": "%AWS.configuration.description.telemetry.cn%" |
| 132 | + } |
| 133 | + } |
| 134 | + }, |
| 135 | + "aws.stepfunctions.asl.format.enable": { |
| 136 | + "type": "boolean", |
| 137 | + "scope": "window", |
| 138 | + "default": true, |
| 139 | + "description": "%AWS.stepFunctions.asl.format.enable.desc%" |
| 140 | + }, |
| 141 | + "aws.stepfunctions.asl.maxItemsComputed": { |
| 142 | + "type": "number", |
| 143 | + "default": 5000, |
| 144 | + "description": "%AWS.stepFunctions.asl.maxItemsComputed.desc%" |
| 145 | + }, |
| 146 | + "aws.ssmDocument.ssm.maxItemsComputed": { |
| 147 | + "type": "number", |
| 148 | + "default": 5000, |
| 149 | + "description": "%AWS.ssmDocument.ssm.maxItemsComputed.desc%" |
| 150 | + }, |
| 151 | + "aws.cwl.limit": { |
| 152 | + "type": "number", |
| 153 | + "default": 10000, |
| 154 | + "description": "%AWS.cwl.limit.desc%", |
| 155 | + "maximum": 10000 |
| 156 | + }, |
| 157 | + "aws.samcli.manuallySelectedBuckets": { |
| 158 | + "type": "object", |
| 159 | + "description": "%AWS.samcli.deploy.bucket.recentlyUsed%", |
| 160 | + "default": [] |
| 161 | + }, |
| 162 | + "aws.samcli.enableCodeLenses": { |
| 163 | + "type": "boolean", |
| 164 | + "description": "%AWS.configuration.enableCodeLenses%", |
| 165 | + "default": false |
| 166 | + }, |
| 167 | + "aws.suppressPrompts": { |
| 168 | + "type": "object", |
| 169 | + "description": "%AWS.configuration.description.suppressPrompts%", |
| 170 | + "default": {}, |
| 171 | + "properties": { |
| 172 | + "apprunnerNotifyPricing": { |
| 173 | + "type": "boolean", |
| 174 | + "default": false |
| 175 | + }, |
| 176 | + "apprunnerNotifyPause": { |
| 177 | + "type": "boolean", |
| 178 | + "default": false |
| 179 | + }, |
| 180 | + "ecsRunCommand": { |
| 181 | + "type": "boolean", |
| 182 | + "default": false |
| 183 | + }, |
| 184 | + "ecsRunCommandEnable": { |
| 185 | + "type": "boolean", |
| 186 | + "default": false |
| 187 | + }, |
| 188 | + "ecsRunCommandDisable": { |
| 189 | + "type": "boolean", |
| 190 | + "default": false |
| 191 | + }, |
| 192 | + "regionAddAutomatically": { |
| 193 | + "type": "boolean", |
| 194 | + "default": false |
| 195 | + }, |
| 196 | + "yamlExtPrompt": { |
| 197 | + "type": "boolean", |
| 198 | + "default": false |
| 199 | + }, |
| 200 | + "fileViewerEdit": { |
| 201 | + "type": "boolean", |
| 202 | + "default": false |
| 203 | + }, |
| 204 | + "createCredentialsProfile": { |
| 205 | + "type": "boolean", |
| 206 | + "default": false |
| 207 | + }, |
| 208 | + "samcliConfirmDevStack": { |
| 209 | + "type": "boolean", |
| 210 | + "default": false |
| 211 | + }, |
| 212 | + "remoteConnected": { |
| 213 | + "type": "boolean", |
| 214 | + "default": false |
| 215 | + }, |
| 216 | + "codeCatalystConnectionExpired": { |
| 217 | + "type": "boolean", |
| 218 | + "default": false |
| 219 | + } |
| 220 | + }, |
| 221 | + "additionalProperties": false |
| 222 | + }, |
| 223 | + "aws.experiments": { |
| 224 | + "type": "object", |
| 225 | + "markdownDescription": "%AWS.configuration.description.experiments%", |
| 226 | + "default": { |
| 227 | + "jsonResourceModification": false |
| 228 | + }, |
| 229 | + "properties": { |
| 230 | + "jsonResourceModification": { |
| 231 | + "type": "boolean", |
| 232 | + "default": false |
| 233 | + } |
| 234 | + }, |
| 235 | + "additionalProperties": false |
| 236 | + }, |
| 237 | + "aws.resources.enabledResources": { |
| 238 | + "type": "array", |
| 239 | + "description": "%AWS.configuration.description.resources.enabledResources%", |
| 240 | + "items": { |
| 241 | + "type": "string" |
| 242 | + } |
| 243 | + }, |
| 244 | + "aws.lambda.recentlyUploaded": { |
| 245 | + "type": "object", |
| 246 | + "description": "%AWS.configuration.description.lambda.recentlyUploaded%", |
| 247 | + "default": [] |
| 248 | + }, |
| 249 | + "aws.accessAnalyzer.policyChecks.checkNoNewAccessFilePath": { |
| 250 | + "type": "string", |
| 251 | + "default": "", |
| 252 | + "description": "File path or S3 path to a text document for CheckNoNewAccess custom check.", |
| 253 | + "scope": "window" |
| 254 | + }, |
| 255 | + "aws.accessAnalyzer.policyChecks.checkAccessNotGrantedFilePath": { |
| 256 | + "type": "string", |
| 257 | + "default": "", |
| 258 | + "description": "File path or S3 path to a text document for CheckAccessNotGranted custom check.", |
| 259 | + "scope": "window" |
| 260 | + }, |
| 261 | + "aws.accessAnalyzer.policyChecks.cloudFormationParameterFilePath": { |
| 262 | + "type": "string", |
| 263 | + "default": "", |
| 264 | + "description": "A JSON formatted file that specifies template parameter values, a stack policy, and tags. Only parameters are used from this file.", |
| 265 | + "scope": "machine-overridable" |
| 266 | + } |
| 267 | + } |
| 268 | + } |
74 | 269 | },
|
75 | 270 | "devDependencies": {},
|
76 | 271 | "dependencies": {
|
|
0 commit comments