You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1889 lines
87 KiB

  1. {
  2. "name": "gitlens",
  3. "version": "5.1.0-beta",
  4. "author": {
  5. "name": "Eric Amodio",
  6. "email": "eamodio@gmail.com"
  7. },
  8. "publisher": "eamodio",
  9. "engines": {
  10. "vscode": "^1.16.0"
  11. },
  12. "license": "SEE LICENSE IN LICENSE",
  13. "displayName": "Git Lens \u2014 git blame annotations, code lens, and more",
  14. "description": "Supercharge Visual Studio Code's Git capabilities \u2014 Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore the history of a file or branch, gain valuable insights via powerful comparison commands, and so much more",
  15. "badges": [
  16. {
  17. "url": "https://img.shields.io/badge/chat-on%20slack-brightgreen.svg",
  18. "href": "https://join.slack.com/t/vscode-gitlens/shared_invite/MjIxOTgxNDE3NzM0LTE1MDE2Nzk1MTgtMjkwMmZjMzcxNQ",
  19. "description": "Chat at https://vscode-gitlens.slack.com/"
  20. }
  21. ],
  22. "categories": [
  23. "Other"
  24. ],
  25. "keywords": [
  26. "git",
  27. "code lens",
  28. "blame",
  29. "history",
  30. "annotation",
  31. "log",
  32. "inline blame",
  33. "compare",
  34. "diff"
  35. ],
  36. "galleryBanner": {
  37. "color": "#56098c",
  38. "theme": "dark"
  39. },
  40. "icon": "images/gitlens-icon.png",
  41. "preview": false,
  42. "homepage": "https://github.com/eamodio/vscode-gitlens/blob/master/README.md",
  43. "bugs": {
  44. "url": "https://github.com/eamodio/vscode-gitlens/issues"
  45. },
  46. "repository": {
  47. "type": "git",
  48. "url": "https://github.com/eamodio/vscode-gitlens.git"
  49. },
  50. "main": "./out/src/extension",
  51. "contributes": {
  52. "configuration": {
  53. "type": "object",
  54. "title": "GitLens configuration",
  55. "properties": {
  56. "gitlens.debug": {
  57. "type": "boolean",
  58. "default": false,
  59. "description": "Specifies debug mode"
  60. },
  61. "gitlens.insiders": {
  62. "type": "boolean",
  63. "default": false,
  64. "description": "Specifies whether or not to enable new experimental features (expect there to be issues)"
  65. },
  66. "gitlens.outputLevel": {
  67. "type": "string",
  68. "default": "silent",
  69. "enum": [
  70. "silent",
  71. "errors",
  72. "verbose"
  73. ],
  74. "description": "Specifies how much (if any) output will be sent to the GitLens output channel"
  75. },
  76. "gitlens.annotations.file.gutter.format": {
  77. "type": "string",
  78. "default": "${message|40?} ${ago|14-}",
  79. "description": "Specifies the format of the gutter blame annotations\nAvailable tokens\n ${id} - commit id\n ${author} - commit author\n ${message} - commit message\n ${ago} - relative commit date (e.g. 1 day ago)\n ${date} - formatted commit date (format specified by `gitlens.annotations.file.gutter.dateFormat`)\n ${authorAgo} - commit author, relative commit date\nSee https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting"
  80. },
  81. "gitlens.annotations.file.gutter.dateFormat": {
  82. "type": "string",
  83. "default": null,
  84. "description": "Specifies how to format absolute dates (using the `${date}` token) in gutter blame annotations\nSee https://momentjs.com/docs/#/displaying/format/ for valid formats"
  85. },
  86. "gitlens.annotations.file.gutter.compact": {
  87. "type": "boolean",
  88. "default": true,
  89. "description": "Specifies whether or not to compact (deduplicate) matching adjacent gutter blame annotations"
  90. },
  91. "gitlens.annotations.file.gutter.heatmap.enabled": {
  92. "type": "boolean",
  93. "default": true,
  94. "description": "Specifies whether or not to provide a heatmap indicator in the gutter blame annotations"
  95. },
  96. "gitlens.annotations.file.gutter.heatmap.location": {
  97. "type": "string",
  98. "default": "right",
  99. "enum": [
  100. "left",
  101. "right"
  102. ],
  103. "description": "Specifies where the heatmap indicators will be shown in the gutter blame annotations\n `left` - adds a heatmap indicator on the left edge of the gutter blame annotations\n `right` - adds a heatmap indicator on the right edge of the gutter blame annotations"
  104. },
  105. "gitlens.annotations.file.gutter.hover.details": {
  106. "type": "boolean",
  107. "default": true,
  108. "description": "Specifies whether or not to provide a commit details hover annotation over the gutter blame annotations"
  109. },
  110. "gitlens.annotations.file.gutter.hover.wholeLine": {
  111. "type": "boolean",
  112. "default": false,
  113. "description": "Specifies whether or not to trigger hover annotations over the whole line"
  114. },
  115. "gitlens.annotations.file.hover.heatmap.enabled": {
  116. "type": "boolean",
  117. "default": true,
  118. "description": "Specifies whether or not to provide heatmap indicators on the left edge of each line"
  119. },
  120. "gitlens.annotations.file.hover.wholeLine": {
  121. "type": "boolean",
  122. "default": true,
  123. "description": "Specifies whether or not to trigger hover annotations over the whole line"
  124. },
  125. "gitlens.annotations.file.recentChanges.hover.details": {
  126. "type": "boolean",
  127. "default": true,
  128. "description": "Specifies whether or not to provide a commit details hover annotation"
  129. },
  130. "gitlens.annotations.file.recentChanges.hover.changes": {
  131. "type": "boolean",
  132. "default": true,
  133. "description": "Specifies whether or not to provide a changes (diff) hover annotation"
  134. },
  135. "gitlens.annotations.line.hover.details": {
  136. "type": "boolean",
  137. "default": true,
  138. "description": "Specifies whether or not to provide a commit details hover annotation for the current line"
  139. },
  140. "gitlens.annotations.line.hover.changes": {
  141. "type": "boolean",
  142. "default": true,
  143. "description": "Specifies whether or not to provide a changes (diff) hover annotation for the current line"
  144. },
  145. "gitlens.annotations.line.trailing.format": {
  146. "type": "string",
  147. "default": "${authorAgo} \u2022 ${message}",
  148. "description": "Specifies the format of the trailing blame annotations\nAvailable tokens\n ${id} - commit id\n ${author} - commit author\n ${message} - commit message\n ${ago} - relative commit date (e.g. 1 day ago)\n ${date} - formatted commit date (format specified by `gitlens.annotations.line.trailing.dateFormat`)\n ${authorAgo} - commit author, relative commit date\nSee https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting"
  149. },
  150. "gitlens.annotations.line.trailing.dateFormat": {
  151. "type": "string",
  152. "default": null,
  153. "description": "Specifies how to format absolute dates (using the `${date}` token) in trailing blame annotations\nSee https://momentjs.com/docs/#/displaying/format/ for valid formats"
  154. },
  155. "gitlens.annotations.line.trailing.hover.details": {
  156. "type": "boolean",
  157. "default": true,
  158. "description": "Specifies whether or not to provide a commit details hover annotation over the trailing blame annotations"
  159. },
  160. "gitlens.annotations.line.trailing.hover.changes": {
  161. "type": "boolean",
  162. "default": true,
  163. "description": "Specifies whether or not to provide a changes (diff) hover annotation over the trailing blame annotations"
  164. },
  165. "gitlens.annotations.line.trailing.hover.wholeLine": {
  166. "type": "boolean",
  167. "default": false,
  168. "description": "Specifies whether or not to trigger hover annotations over the whole line"
  169. },
  170. "gitlens.blame.ignoreWhitespace": {
  171. "type": "boolean",
  172. "default": false,
  173. "description": "Specifies whether or not to ignore whitespace when comparing revisions during blame operations"
  174. },
  175. "gitlens.blame.file.annotationType": {
  176. "type": "string",
  177. "default": "gutter",
  178. "enum": [
  179. "gutter",
  180. "hover"
  181. ],
  182. "description": "Specifies the type of blame annotations that will be shown for the current file\n `gutter` - adds an annotation to the beginning of each line\n `hover` - shows annotations when hovering over each line"
  183. },
  184. "gitlens.blame.file.lineHighlight.enabled": {
  185. "type": "boolean",
  186. "default": true,
  187. "description": "Specifies whether or not to highlight lines associated with the current line"
  188. },
  189. "gitlens.blame.file.lineHighlight.locations": {
  190. "type": "array",
  191. "default": [
  192. "gutter",
  193. "line",
  194. "overviewRuler"
  195. ],
  196. "items": {
  197. "type": "string",
  198. "enum": [
  199. "gutter",
  200. "line",
  201. "overviewRuler"
  202. ]
  203. },
  204. "minItems": 1,
  205. "maxItems": 3,
  206. "uniqueItems": true,
  207. "description": "Specifies where the associated line highlights will be shown\n `gutter` - adds a gutter glyph\n `line` - adds a full-line highlight background color\n `overviewRuler` - adds a decoration to the overviewRuler (scroll bar)"
  208. },
  209. "gitlens.blame.line.enabled": {
  210. "type": "boolean",
  211. "default": true,
  212. "description": "Specifies whether or not to provide a blame annotation for the current line, by default\nUse the `gitlens.toggleLineBlame` command to toggle the annotations on and off for the current session"
  213. },
  214. "gitlens.blame.line.annotationType": {
  215. "type": "string",
  216. "default": "trailing",
  217. "enum": [
  218. "trailing",
  219. "hover"
  220. ],
  221. "description": "Specifies the type of blame annotations that will be shown for the current line\n `trailing` - adds an annotation to the end of the current line\n `hover` - shows annotations when hovering over the current line"
  222. },
  223. "gitlens.recentChanges.file.lineHighlight.locations": {
  224. "type": "array",
  225. "default": [
  226. "gutter",
  227. "line",
  228. "overviewRuler"
  229. ],
  230. "items": {
  231. "type": "string",
  232. "enum": [
  233. "gutter",
  234. "line",
  235. "overviewRuler"
  236. ]
  237. },
  238. "minItems": 1,
  239. "maxItems": 3,
  240. "uniqueItems": true,
  241. "description": "Specifies where the highlights of the recently changed lines will be shown\n `gutter` - adds a gutter glyph\n `line` - adds a full-line highlight background color\n `overviewRuler` - adds a decoration to the overviewRuler (scroll bar)"
  242. },
  243. "gitlens.codeLens.enabled": {
  244. "type": "boolean",
  245. "default": true,
  246. "description": "Specifies whether or not to provide any Git code lens, by default\nUse the `gitlens.toggleCodeLens` command to toggle the Git code lens on and off for the current session"
  247. },
  248. "gitlens.codeLens.recentChange.enabled": {
  249. "type": "boolean",
  250. "default": true,
  251. "description": "Specifies whether or not to show a `recent change` code lens showing the author and date of the most recent commit for the file or code block"
  252. },
  253. "gitlens.codeLens.recentChange.command": {
  254. "type": "string",
  255. "default": "gitlens.showQuickCommitFileDetails",
  256. "enum": [
  257. "gitlens.toggleFileBlame",
  258. "gitlens.showBlameHistory",
  259. "gitlens.showFileHistory",
  260. "gitlens.diffWithPrevious",
  261. "gitlens.showQuickCommitDetails",
  262. "gitlens.showQuickCommitFileDetails",
  263. "gitlens.showQuickFileHistory",
  264. "gitlens.showQuickRepoHistory"
  265. ],
  266. "description": "Specifies the command to be executed when the `recent change` code lens is clicked\n `gitlens.toggleFileBlame` - toggles file blame annotations\n `gitlens.showBlameHistory` - opens the blame history explorer\n `gitlens.showFileHistory` - opens the file history explorer\n `gitlens.diffWithPrevious` - compares the current committed file with the previous commit\n `gitlens.showQuickCommitDetails` - shows a commit details quick pick\n `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick\n `gitlens.showQuickFileHistory` - shows a file history quick pick\n `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
  267. },
  268. "gitlens.codeLens.authors.enabled": {
  269. "type": "boolean",
  270. "default": true,
  271. "description": "Specifies whether or not to show an `authors` code lens showing number of authors of the file or code block and the most prominent author (if there is more than one)"
  272. },
  273. "gitlens.codeLens.authors.command": {
  274. "type": "string",
  275. "default": "gitlens.toggleFileBlame",
  276. "enum": [
  277. "gitlens.toggleFileBlame",
  278. "gitlens.showBlameHistory",
  279. "gitlens.showFileHistory",
  280. "gitlens.diffWithPrevious",
  281. "gitlens.showQuickCommitDetails",
  282. "gitlens.showQuickCommitFileDetails",
  283. "gitlens.showQuickFileHistory",
  284. "gitlens.showQuickRepoHistory"
  285. ],
  286. "description": "Specifies the command to be executed when the `authors` code lens is clicked\n `gitlens.toggleFileBlame` - toggles file blame annotations\n `gitlens.showBlameHistory` - opens the blame history explorer\n `gitlens.showFileHistory` - opens the file history explorer\n `gitlens.diffWithPrevious` - compares the current committed file with the previous commit\n `gitlens.showQuickCommitDetails` - shows a commit details quick pick\n `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick\n `gitlens.showQuickFileHistory` - shows a file history quick pick\n `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
  287. },
  288. "gitlens.codeLens.locations": {
  289. "type": "array",
  290. "default": [
  291. "document",
  292. "containers"
  293. ],
  294. "items": {
  295. "type": "string",
  296. "enum": [
  297. "document",
  298. "containers",
  299. "blocks",
  300. "custom"
  301. ]
  302. },
  303. "minItems": 1,
  304. "maxItems": 4,
  305. "uniqueItems": true,
  306. "description": "Specifies where Git code lens will be shown in the document\n `document` - adds code lens at the top of the document\n `containers` - adds code lens at the start of container-like symbols (modules, classes, interfaces, etc)\n `blocks` - adds code lens at the start of block-like symbols (functions, methods, properties, etc) lines\n `custom` - adds code lens at the start of symbols contained in `gitlens.codeLens.locationCustomSymbols`"
  307. },
  308. "gitlens.codeLens.customLocationSymbols": {
  309. "type": "array",
  310. "items": {
  311. "type": "string"
  312. },
  313. "uniqueItems": true,
  314. "description": "Specifies the set of document symbols where Git code lens will be shown in the document\nMust be a member of `SymbolKind`"
  315. },
  316. "gitlens.codeLens.perLanguageLocations": {
  317. "type": "array",
  318. "default": [
  319. {
  320. "language": "css",
  321. "locations": [
  322. "document"
  323. ]
  324. },
  325. {
  326. "language": "html",
  327. "locations": [
  328. "document"
  329. ]
  330. },
  331. {
  332. "language": "json",
  333. "locations": [
  334. "document"
  335. ]
  336. },
  337. {
  338. "language": "less",
  339. "locations": [
  340. "document"
  341. ]
  342. },
  343. {
  344. "language": "scss",
  345. "locations": [
  346. "document"
  347. ]
  348. },
  349. {
  350. "language": "vue",
  351. "locations": [
  352. "document"
  353. ]
  354. },
  355. {
  356. "language": "stylus",
  357. "locations": [
  358. "document"
  359. ]
  360. }
  361. ],
  362. "items": {
  363. "type": "object",
  364. "required": [
  365. "language",
  366. "locations"
  367. ],
  368. "properties": {
  369. "language": {
  370. "type": "string",
  371. "description": "Specifies the language to which this code lens override applies"
  372. },
  373. "locations": {
  374. "type": "array",
  375. "default": [
  376. "document",
  377. "containers"
  378. ],
  379. "items": {
  380. "type": "string",
  381. "enum": [
  382. "document",
  383. "containers",
  384. "blocks",
  385. "custom"
  386. ]
  387. },
  388. "minItems": 1,
  389. "maxItems": 4,
  390. "uniqueItems": true,
  391. "description": "Specifies where Git code lens will be shown in the document for the specified language\n `document` - adds code lens at the top of the document\n `containers` - adds code lens at the start of container-like symbols (modules, classes, interfaces, etc)\n `blocks` - adds code lens at the start of block-like symbols (functions, methods, properties, etc) lines\n `custom` - adds code lens at the start of symbols contained in `customSymbols`"
  392. },
  393. "customSymbols": {
  394. "type": "array",
  395. "items": {
  396. "type": "string"
  397. },
  398. "uniqueItems": true,
  399. "description": "Specifies the set of document symbols where Git code lens will be shown in the document for the specified language\nMust be a member of `SymbolKind`"
  400. }
  401. }
  402. },
  403. "uniqueItems": true,
  404. "description": "Specifies where Git code lens will be shown in the document for the specified languages"
  405. },
  406. "gitlens.codeLens.debug": {
  407. "type": "boolean",
  408. "default": false,
  409. "description": "Specifies whether or not to show debug information in code lens"
  410. },
  411. "gitlens.defaultDateFormat": {
  412. "type": "string",
  413. "default": null,
  414. "description": "Specifies how all absolute dates will be formatted by default\nSee https://momentjs.com/docs/#/displaying/format/ for valid formats"
  415. },
  416. "gitlens.gitExplorer.commitFormat": {
  417. "type": "string",
  418. "default": "${message} \u00a0\u2022\u00a0 ${authorAgo} \u00a0\u2022\u00a0 ${id}",
  419. "description": "Specifies the format of committed changes in the `GitLens` custom view\nAvailable tokens\n ${id} - commit id\n ${author} - commit author\n ${message} - commit message\n ${ago} - relative commit date (e.g. 1 day ago)\n ${date} - formatted commit date (format specified by `gitlens.statusBar.dateFormat`)\n ${authorAgo} - commit author, relative commit date\nSee https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting"
  420. },
  421. "gitlens.gitExplorer.commitFileFormat": {
  422. "type": "string",
  423. "default": "${filePath}",
  424. "description": "Specifies the format of a committed file in the `GitLens` custom view\nAvailable tokens\n ${file} - file name\n ${filePath} - file name and path\n ${path} - file path"
  425. },
  426. "gitlens.gitExplorer.showTrackingBranch": {
  427. "type": "boolean",
  428. "default": true,
  429. "description": "Specifies whether or not to show the tracking branch when displaying local branches in the `GitLens` custom view"
  430. },
  431. "gitlens.gitExplorer.stashFormat": {
  432. "type": "string",
  433. "default": "${message}",
  434. "description": "Specifies the format of stashed changes in the `GitLens` custom view\nAvailable tokens\n ${id} - commit id\n ${author} - commit author\n ${message} - commit message\n ${ago} - relative commit date (e.g. 1 day ago)\n ${date} - formatted commit date (format specified by `gitlens.statusBar.dateFormat`)\n ${authorAgo} - commit author, relative commit date\nSee https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting"
  435. },
  436. "gitlens.gitExplorer.stashFileFormat": {
  437. "type": "string",
  438. "default": "${filePath}",
  439. "description": "Specifies the format of a stashed file in the `GitLens` custom view\nAvailable tokens\n ${file} - file name\n ${filePath} - file name and path\n ${path} - file path"
  440. },
  441. "gitlens.gitExplorer.view": {
  442. "type": "string",
  443. "default": "repository",
  444. "enum": [
  445. "history",
  446. "repository"
  447. ],
  448. "description": "Specifies the starting view (mode) of the `GitLens` custom view\n `history` - shows the commit history of the active file\n `repository` - shows a repository explorer"
  449. },
  450. "gitlens.remotes": {
  451. "type": "array",
  452. "default": null,
  453. "items": {
  454. "type": "object",
  455. "required": [
  456. "type",
  457. "domain"
  458. ],
  459. "properties": {
  460. "type": {
  461. "type": "string",
  462. "enum": [
  463. "Bitbucket",
  464. "BitbucketServer",
  465. "GitHub",
  466. "GitLab"
  467. ],
  468. "description": "Specifies the type of the custom remote service\n `Bitbucket`, `BitbucketServer`, `GitHub`, or `GitLab`"
  469. },
  470. "domain": {
  471. "type": "string",
  472. "description": "Specifies the domain name of the custom remote service"
  473. }
  474. }
  475. },
  476. "uniqueItems": true,
  477. "description": "Specifies any custom domains for remote (code-hosting) services"
  478. },
  479. "gitlens.statusBar.enabled": {
  480. "type": "boolean",
  481. "default": true,
  482. "description": "Specifies whether or not to provide blame information on the status bar"
  483. },
  484. "gitlens.statusBar.alignment": {
  485. "type": "string",
  486. "default": "right",
  487. "enum": [
  488. "left",
  489. "right"
  490. ],
  491. "description": "Specifies the blame alignment in the status bar\n `left` - align to the left\n `right` - align to the right"
  492. },
  493. "gitlens.statusBar.command": {
  494. "type": "string",
  495. "default": "gitlens.showQuickCommitDetails",
  496. "enum": [
  497. "gitlens.toggleFileBlame",
  498. "gitlens.showBlameHistory",
  499. "gitlens.showFileHistory",
  500. "gitlens.diffWithPrevious",
  501. "gitlens.diffWithWorking",
  502. "gitlens.toggleCodeLens",
  503. "gitlens.showQuickCommitDetails",
  504. "gitlens.showQuickCommitFileDetails",
  505. "gitlens.showQuickFileHistory",
  506. "gitlens.showQuickRepoHistory"
  507. ],
  508. "description": "Specifies the command to be executed when the blame status bar item is clicked\n `gitlens.toggleFileBlame` - toggles file blame annotations\n `gitlens.showBlameHistory` - opens the blame history explorer\n `gitlens.showFileHistory` - opens the file history explorer\n `gitlens.diffWithPrevious` - compares the current line commit with the previous\n `gitlens.diffWithWorking` - compares the current line commit with the working tree\n `gitlens.toggleCodeLens` - toggles Git code lens\n `gitlens.showQuickCommitDetails` - shows a commit details quick pick\n `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick\n `gitlens.showQuickFileHistory` - shows a file history quick pick\n `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
  509. },
  510. "gitlens.statusBar.format": {
  511. "type": "string",
  512. "default": "${authorAgo}",
  513. "description": "Specifies the format of the status bar blame information\nAvailable tokens\n ${id} - commit id\n ${author} - commit author\n ${message} - commit message\n ${ago} - relative commit date (e.g. 1 day ago)\n ${date} - formatted commit date (format specified by `gitlens.statusBar.dateFormat`)\n ${authorAgo} - commit author, relative commit date\nSee https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting"
  514. },
  515. "gitlens.statusBar.dateFormat": {
  516. "type": "string",
  517. "default": null,
  518. "description": "Specifies the date format of absolute dates shown in the blame information on the status bar. See https://momentjs.com/docs/#/displaying/format/ for valid formats"
  519. },
  520. "gitlens.strings.codeLens.unsavedChanges.recentChangeAndAuthors": {
  521. "type": "string",
  522. "default": "Cannot determine recent change or authors (unsaved changes)",
  523. "description": "Specifies the string to be shown in place of both the `recent change` and `authors` code lens when there are unsaved changes"
  524. },
  525. "gitlens.strings.codeLens.unsavedChanges.recentChangeOnly": {
  526. "type": "string",
  527. "default": "Cannot determine recent change (unsaved changes)",
  528. "description": "Specifies the string to be shown in place of the `recent change` code lens when there are unsaved changes"
  529. },
  530. "gitlens.strings.codeLens.unsavedChanges.authorsOnly": {
  531. "type": "string",
  532. "default": "Cannot determine authors (unsaved changes)",
  533. "description": "Specifies the string to be shown in place of the `authors` code lens when there are unsaved changes"
  534. },
  535. "gitlens.theme.annotations.file.gutter.separateLines": {
  536. "type": "boolean",
  537. "default": true,
  538. "description": "Specifies whether or not gutter blame annotations will be separated by a small gap"
  539. },
  540. "gitlens.theme.annotations.file.gutter.dark.backgroundColor": {
  541. "type": "string",
  542. "default": "rgba(255, 255, 255, 0.075)",
  543. "description": "Specifies the dark theme background color of the gutter blame annotations. Must be a valid css color"
  544. },
  545. "gitlens.theme.annotations.file.gutter.light.backgroundColor": {
  546. "type": "string",
  547. "default": "rgba(0, 0, 0, 0.05)",
  548. "description": "Specifies the light theme background color of the gutter blame annotations. Must be a valid css color"
  549. },
  550. "gitlens.theme.annotations.file.gutter.dark.foregroundColor": {
  551. "type": "string",
  552. "default": "rgb(190, 190, 190)",
  553. "description": "Specifies the dark theme foreground color of the gutter blame annotations. Must be a valid css color"
  554. },
  555. "gitlens.theme.annotations.file.gutter.light.foregroundColor": {
  556. "type": "string",
  557. "default": "rgb(116, 116, 116)",
  558. "description": "Specifies the light theme foreground color of the gutter blame annotations. Must be a valid css color"
  559. },
  560. "gitlens.theme.annotations.file.gutter.dark.uncommittedForegroundColor": {
  561. "type": "string",
  562. "default": "rgba(0, 188, 242, 0.6)",
  563. "description": "Specifies the dark theme foreground color of an uncommitted line in the gutter blame annotations. Must be a valid css color"
  564. },
  565. "gitlens.theme.annotations.file.gutter.light.uncommittedForegroundColor": {
  566. "type": "string",
  567. "default": "rgba(0, 188, 242, 0.6)",
  568. "description": "Specifies the light theme foreground color of an uncommitted line in the gutter blame annotations. Must be a valid css color"
  569. },
  570. "gitlens.theme.annotations.line.trailing.dark.backgroundColor": {
  571. "type": "string",
  572. "default": null,
  573. "description": "Specifies the dark theme background color of the trailing blame annotation. Must be a valid css color"
  574. },
  575. "gitlens.theme.annotations.line.trailing.light.backgroundColor": {
  576. "type": "string",
  577. "default": null,
  578. "description": "Specifies the light theme background color of the trailing blame annotation. Must be a valid css color"
  579. },
  580. "gitlens.theme.annotations.line.trailing.dark.foregroundColor": {
  581. "type": "string",
  582. "default": "rgba(153, 153, 153, 0.35)",
  583. "description": "Specifies the dark theme foreground color of the trailing blame annotation. Must be a valid css color"
  584. },
  585. "gitlens.theme.annotations.line.trailing.light.foregroundColor": {
  586. "type": "string",
  587. "default": "rgba(153, 153, 153, 0.35)",
  588. "description": "Specifies the light theme foreground color of the trailing blame annotation. Must be a valid css color"
  589. },
  590. "gitlens.theme.lineHighlight.dark.backgroundColor": {
  591. "type": "string",
  592. "default": "rgba(0, 188, 242, 0.2)",
  593. "description": "Specifies the dark theme background color of the associated line highlights in blame annotations. Must be a valid css color"
  594. },
  595. "gitlens.theme.lineHighlight.light.backgroundColor": {
  596. "type": "string",
  597. "default": "rgba(0, 188, 242, 0.2)",
  598. "description": "Specifies the light theme background color of the associated line highlights in blame annotations. Must be a valid css color"
  599. },
  600. "gitlens.theme.lineHighlight.dark.overviewRulerColor": {
  601. "type": "string",
  602. "default": "rgba(0, 188, 242, 0.6)",
  603. "description": "Specifies the dark theme overview ruler color of the associated line highlights in blame annotations. Must be a valid css color"
  604. },
  605. "gitlens.theme.lineHighlight.light.overviewRulerColor": {
  606. "type": "string",
  607. "default": "rgba(0, 188, 242, 0.6)",
  608. "description": "Specifies the light theme overview ruler color of the associated line highlights in blame annotations. Must be a valid css color"
  609. },
  610. "gitlens.advanced.caching.enabled": {
  611. "type": "boolean",
  612. "default": true,
  613. "description": "Specifies whether git output will be cached"
  614. },
  615. "gitlens.advanced.caching.maxLines": {
  616. "type": "number",
  617. "default": 0,
  618. "description": "Specifies the threshold for caching larger documents"
  619. },
  620. "gitlens.advanced.git": {
  621. "type": "string",
  622. "default": null,
  623. "description": "Specifies the git path to use"
  624. },
  625. "gitlens.advanced.gitignore.enabled": {
  626. "type": "boolean",
  627. "default": true,
  628. "description": "Specifies whether or not to parse the root .gitignore file for better performance (i.e. avoids blaming excluded files)"
  629. },
  630. "gitlens.advanced.maxQuickHistory": {
  631. "type": "number",
  632. "default": 200,
  633. "description": "Specifies the maximum number of QuickPick history entries to show"
  634. },
  635. "gitlens.advanced.menus": {
  636. "type": "object",
  637. "default": {
  638. "editorContext": {
  639. "blame": true,
  640. "copy": true,
  641. "details": true,
  642. "fileDiff": true,
  643. "history": true,
  644. "lineDiff": true,
  645. "remote": true
  646. },
  647. "editorTitle": {
  648. "blame": true,
  649. "fileDiff": true,
  650. "history": true,
  651. "remote": true,
  652. "status": true
  653. },
  654. "editorTitleContext": {
  655. "blame": true,
  656. "fileDiff": true,
  657. "history": true,
  658. "remote": true
  659. },
  660. "explorerContext": {
  661. "fileDiff": true,
  662. "history": true,
  663. "remote": true
  664. }
  665. },
  666. "description": "Specifies which commands will be added to which menus",
  667. "properties": {
  668. "editorContext": {
  669. "type": "object",
  670. "default": {
  671. "blame": true,
  672. "copy": true,
  673. "details": true,
  674. "fileDiff": true,
  675. "history": true,
  676. "lineDiff": true,
  677. "remote": true
  678. },
  679. "properties": {
  680. "blame": {
  681. "type": "boolean",
  682. "default": true
  683. },
  684. "copy": {
  685. "type": "boolean",
  686. "default": true
  687. },
  688. "details": {
  689. "type": "boolean",
  690. "default": true
  691. },
  692. "fileDiff": {
  693. "type": "boolean",
  694. "default": true
  695. },
  696. "history": {
  697. "type": "boolean",
  698. "default": true
  699. },
  700. "lineDiff": {
  701. "type": "boolean",
  702. "default": true
  703. },
  704. "remote": {
  705. "type": "boolean",
  706. "default": true
  707. }
  708. }
  709. },
  710. "editorTitle": {
  711. "type": "object",
  712. "default": {
  713. "blame": true,
  714. "fileDiff": true,
  715. "history": true,
  716. "remote": true,
  717. "status": true
  718. },
  719. "properties": {
  720. "blame": {
  721. "type": "boolean",
  722. "default": true
  723. },
  724. "fileDiff": {
  725. "type": "boolean",
  726. "default": true
  727. },
  728. "history": {
  729. "type": "boolean",
  730. "default": true
  731. },
  732. "remote": {
  733. "type": "boolean",
  734. "default": true
  735. },
  736. "status": {
  737. "type": "boolean",
  738. "default": true
  739. }
  740. }
  741. },
  742. "editorTitleContext": {
  743. "type": "object",
  744. "default": {
  745. "blame": true,
  746. "fileDiff": true,
  747. "history": true,
  748. "remote": true
  749. },
  750. "properties": {
  751. "blame": {
  752. "type": "boolean",
  753. "default": true
  754. },
  755. "fileDiff": {
  756. "type": "boolean",
  757. "default": true
  758. },
  759. "history": {
  760. "type": "boolean",
  761. "default": true
  762. },
  763. "remote": {
  764. "type": "boolean",
  765. "default": true
  766. }
  767. }
  768. },
  769. "explorerContext": {
  770. "type": "object",
  771. "default": {
  772. "fileDiff": true,
  773. "history": true,
  774. "remote": true
  775. },
  776. "properties": {
  777. "fileDiff": {
  778. "type": "boolean",
  779. "default": true
  780. },
  781. "history": {
  782. "type": "boolean",
  783. "default": true
  784. },
  785. "remote": {
  786. "type": "boolean",
  787. "default": true
  788. }
  789. }
  790. }
  791. }
  792. },
  793. "gitlens.advanced.quickPick.closeOnFocusOut": {
  794. "type": "boolean",
  795. "default": true,
  796. "description": "Specifies whether or not to close the QuickPick menu when focus is lost"
  797. },
  798. "gitlens.advanced.telemetry.enabled": {
  799. "type": "boolean",
  800. "default": true,
  801. "description": "Specifies whether or not to enable GitLens telemetry (even if enabled still abides by the overall `telemetry.enableTelemetry` setting"
  802. },
  803. "gitlens.advanced.toggleWhitespace.enabled": {
  804. "type": "boolean",
  805. "default": false,
  806. "description": "Specifies whether or not to toggle whitespace off then showing blame annotations (*may* be required by certain fonts/themes)"
  807. }
  808. }
  809. },
  810. "commands": [
  811. {
  812. "command": "gitlens.diffDirectory",
  813. "title": "Directory Compare",
  814. "category": "GitLens"
  815. },
  816. {
  817. "command": "gitlens.diffWith",
  818. "title": "Compare File Revisions",
  819. "category": "GitLens"
  820. },
  821. {
  822. "command": "gitlens.diffWithBranch",
  823. "title": "Compare File with Branch...",
  824. "category": "GitLens"
  825. },
  826. {
  827. "command": "gitlens.diffWithNext",
  828. "title": "Compare File with Next Revision",
  829. "category": "GitLens"
  830. },
  831. {
  832. "command": "gitlens.diffWithPrevious",
  833. "title": "Compare File with Previous Revision",
  834. "category": "GitLens"
  835. },
  836. {
  837. "command": "gitlens.diffLineWithPrevious",
  838. "title": "Compare Line Revision with Previous",
  839. "category": "GitLens"
  840. },
  841. {
  842. "command": "gitlens.diffWithRevision",
  843. "title": "Compare File with Revision...",
  844. "category": "GitLens"
  845. },
  846. {
  847. "command": "gitlens.diffWithWorking",
  848. "title": "Compare File with Working Revision",
  849. "category": "GitLens"
  850. },
  851. {
  852. "command": "gitlens.diffLineWithWorking",
  853. "title": "Compare Line Revision with Working",
  854. "category": "GitLens"
  855. },
  856. {
  857. "command": "gitlens.showFileBlame",
  858. "title": "Show File Blame Annotations",
  859. "category": "GitLens"
  860. },
  861. {
  862. "command": "gitlens.showLineBlame",
  863. "title": "Show Line Blame Annotations",
  864. "category": "GitLens"
  865. },
  866. {
  867. "command": "gitlens.toggleFileBlame",
  868. "title": "Toggle File Blame Annotations",
  869. "category": "GitLens",
  870. "icon": {
  871. "dark": "images/dark/git-icon.svg",
  872. "light": "images/light/git-icon.svg"
  873. }
  874. },
  875. {
  876. "command": "gitlens.clearFileAnnotations",
  877. "title": "Clear File Annotations",
  878. "category": "GitLens",
  879. "icon": {
  880. "dark": "images/dark/git-icon-orange.svg",
  881. "light": "images/light/git-icon-orange.svg"
  882. }
  883. },
  884. {
  885. "command": "gitlens.computingFileAnnotations",
  886. "title": "Computing File Annotations...",
  887. "category": "GitLens",
  888. "icon": {
  889. "dark": "images/dark/git-icon-progress.svg",
  890. "light": "images/light/git-icon-progress.svg"
  891. }
  892. },
  893. {
  894. "command": "gitlens.toggleFileRecentChanges",
  895. "title": "Toggle Recent File Changes Annotations",
  896. "category": "GitLens",
  897. "icon": {
  898. "dark": "images/dark/git-icon.svg",
  899. "light": "images/light/git-icon.svg"
  900. }
  901. },
  902. {
  903. "command": "gitlens.toggleLineBlame",
  904. "title": "Toggle Line Blame Annotations",
  905. "category": "GitLens"
  906. },
  907. {
  908. "command": "gitlens.toggleCodeLens",
  909. "title": "Toggle Git Code Lens",
  910. "category": "GitLens"
  911. },
  912. {
  913. "command": "gitlens.showBlameHistory",
  914. "title": "Open Blame History Explorer",
  915. "category": "GitLens"
  916. },
  917. {
  918. "command": "gitlens.showCommitSearch",
  919. "title": "Search Commits",
  920. "category": "GitLens",
  921. "icon": {
  922. "dark": "images/dark/icon-search.svg",
  923. "light": "images/light/icon-search.svg"
  924. }
  925. },
  926. {
  927. "command": "gitlens.showFileHistory",
  928. "title": "Open File History Explorer",
  929. "category": "GitLens"
  930. },
  931. {
  932. "command": "gitlens.showLastQuickPick",
  933. "title": "Show Last Opened Quick Pick",
  934. "category": "GitLens"
  935. },
  936. {
  937. "command": "gitlens.showQuickCommitDetails",
  938. "title": "Show Commit Details",
  939. "category": "GitLens"
  940. },
  941. {
  942. "command": "gitlens.showQuickCommitFileDetails",
  943. "title": "Show Commit File Details",
  944. "category": "GitLens"
  945. },
  946. {
  947. "command": "gitlens.showQuickFileHistory",
  948. "title": "Show File History",
  949. "category": "GitLens"
  950. },
  951. {
  952. "command": "gitlens.showQuickBranchHistory",
  953. "title": "Show Branch History",
  954. "category": "GitLens"
  955. },
  956. {
  957. "command": "gitlens.showQuickRepoHistory",
  958. "title": "Show Current Branch History",
  959. "category": "GitLens"
  960. },
  961. {
  962. "command": "gitlens.showQuickRepoStatus",
  963. "title": "Show Repository Status",
  964. "category": "GitLens"
  965. },
  966. {
  967. "command": "gitlens.showQuickStashList",
  968. "title": "Show Stashed Changes",
  969. "category": "GitLens"
  970. },
  971. {
  972. "command": "gitlens.copyShaToClipboard",
  973. "title": "Copy Commit ID to Clipboard",
  974. "category": "GitLens"
  975. },
  976. {
  977. "command": "gitlens.copyMessageToClipboard",
  978. "title": "Copy Commit Message to Clipboard",
  979. "category": "GitLens"
  980. },
  981. {
  982. "command": "gitlens.closeUnchangedFiles",
  983. "title": "Close Unchanged Files",
  984. "category": "GitLens"
  985. },
  986. {
  987. "command": "gitlens.openChangedFiles",
  988. "title": "Open Changed Files",
  989. "category": "GitLens"
  990. },
  991. {
  992. "command": "gitlens.openBranchesInRemote",
  993. "title": "Open Branches in Remote",
  994. "category": "GitLens"
  995. },
  996. {
  997. "command": "gitlens.openBranchInRemote",
  998. "title": "Open Branch in Remote",
  999. "category": "GitLens"
  1000. },
  1001. {
  1002. "command": "gitlens.openCommitInRemote",
  1003. "title": "Open Commit in Remote",
  1004. "category": "GitLens"
  1005. },
  1006. {
  1007. "command": "gitlens.openFileInRemote",
  1008. "title": "Open File in Remote",
  1009. "category": "GitLens"
  1010. },
  1011. {
  1012. "command": "gitlens.openRepoInRemote",
  1013. "title": "Open Repository in Remote",
  1014. "category": "GitLens"
  1015. },
  1016. {
  1017. "command": "gitlens.stashApply",
  1018. "title": "Apply Stashed Changes",
  1019. "category": "GitLens"
  1020. },
  1021. {
  1022. "command": "gitlens.stashDelete",
  1023. "title": "Delete Stashed Changes",
  1024. "category": "GitLens"
  1025. },
  1026. {
  1027. "command": "gitlens.stashSave",
  1028. "title": "Stash Changes",
  1029. "category": "GitLens",
  1030. "icon": {
  1031. "dark": "images/dark/icon-add.svg",
  1032. "light": "images/light/icon-add.svg"
  1033. }
  1034. },
  1035. {
  1036. "command": "gitlens.resetSuppressedWarnings",
  1037. "title": "Reset Suppressed Warnings",
  1038. "category": "GitLens"
  1039. },
  1040. {
  1041. "command": "gitlens.gitExplorer.refresh",
  1042. "title": "Refresh",
  1043. "category": "GitLens",
  1044. "icon": {
  1045. "dark": "images/dark/icon-refresh.svg",
  1046. "light": "images/light/icon-refresh.svg"
  1047. }
  1048. },
  1049. {
  1050. "command": "gitlens.gitExplorer.switchToHistoryView",
  1051. "title": "Switch to History View",
  1052. "category": "GitLens",
  1053. "icon": {
  1054. "dark": "images/dark/icon-history.svg",
  1055. "light": "images/light/icon-history.svg"
  1056. }
  1057. },
  1058. {
  1059. "command": "gitlens.gitExplorer.switchToRepositoryView",
  1060. "title": "Switch to Repository View",
  1061. "category": "GitLens",
  1062. "icon": {
  1063. "dark": "images/dark/icon-repo.svg",
  1064. "light": "images/light/icon-repo.svg"
  1065. }
  1066. },
  1067. {
  1068. "command": "gitlens.gitExplorer.openChanges",
  1069. "title": "Open Changes",
  1070. "category": "GitLens"
  1071. },
  1072. {
  1073. "command": "gitlens.gitExplorer.openChangesWithWorking",
  1074. "title": "Open Changes with Working Tree",
  1075. "category": "GitLens"
  1076. },
  1077. {
  1078. "command": "gitlens.gitExplorer.openFile",
  1079. "title": "Open File",
  1080. "category": "GitLens"
  1081. },
  1082. {
  1083. "command": "gitlens.gitExplorer.openFileRevision",
  1084. "title": "Open Revision",
  1085. "category": "GitLens"
  1086. },
  1087. {
  1088. "command": "gitlens.gitExplorer.openFileRevisionInRemote",
  1089. "title": "Open Revision in Remote",
  1090. "category": "GitLens"
  1091. },
  1092. {
  1093. "command": "gitlens.gitExplorer.openChangedFiles",
  1094. "title": "Open Files",
  1095. "category": "GitLens"
  1096. },
  1097. {
  1098. "command": "gitlens.gitExplorer.openChangedFileChanges",
  1099. "title": "Open All Changes",
  1100. "category": "GitLens"
  1101. },
  1102. {
  1103. "command": "gitlens.gitExplorer.openChangedFileChangesWithWorking",
  1104. "title": "Open All Changes with Working Tree",
  1105. "category": "GitLens"
  1106. },
  1107. {
  1108. "command": "gitlens.gitExplorer.openChangedFileRevisions",
  1109. "title": "Open Revisions",
  1110. "category": "GitLens"
  1111. },
  1112. {
  1113. "command": "gitlens.gitExplorer.applyChanges",
  1114. "title": "Apply Changes",
  1115. "category": "GitLens"
  1116. }
  1117. ],
  1118. "menus": {
  1119. "commandPalette": [
  1120. {
  1121. "command": "gitlens.diffDirectory",
  1122. "when": "gitlens:enabled"
  1123. },
  1124. {
  1125. "command": "gitlens.diffWith",
  1126. "when": "false"
  1127. },
  1128. {
  1129. "command": "gitlens.diffWithBranch",
  1130. "when": "gitlens:isTracked"
  1131. },
  1132. {
  1133. "command": "gitlens.diffWithNext",
  1134. "when": "gitlens:isTracked"
  1135. },
  1136. {
  1137. "command": "gitlens.diffWithPrevious",
  1138. "when": "gitlens:isTracked"
  1139. },
  1140. {
  1141. "command": "gitlens.diffLineWithPrevious",
  1142. "when": "gitlens:isBlameable"
  1143. },
  1144. {
  1145. "command": "gitlens.diffWithRevision",
  1146. "when": "gitlens:isTracked"
  1147. },
  1148. {
  1149. "command": "gitlens.diffWithWorking",
  1150. "when": "gitlens:isTracked"
  1151. },
  1152. {
  1153. "command": "gitlens.diffLineWithWorking",
  1154. "when": "gitlens:isBlameable"
  1155. },
  1156. {
  1157. "command": "gitlens.showFileBlame",
  1158. "when": "gitlens:isBlameable"
  1159. },
  1160. {
  1161. "command": "gitlens.showLineBlame",
  1162. "when": "gitlens:isBlameable"
  1163. },
  1164. {
  1165. "command": "gitlens.toggleFileBlame",
  1166. "when": "gitlens:isBlameable"
  1167. },
  1168. {
  1169. "command": "gitlens.clearFileAnnotations",
  1170. "when": "gitlens:annotationStatus == computed"
  1171. },
  1172. {
  1173. "command": "gitlens.computingFileAnnotations",
  1174. "when": "false"
  1175. },
  1176. {
  1177. "command": "gitlens.toggleFileRecentChanges",
  1178. "when": "gitlens:isTracked"
  1179. },
  1180. {
  1181. "command": "gitlens.toggleLineBlame",
  1182. "when": "gitlens:isBlameable"
  1183. },
  1184. {
  1185. "command": "gitlens.toggleCodeLens",
  1186. "when": "gitlens:isTracked && gitlens:canToggleCodeLens"
  1187. },
  1188. {
  1189. "command": "gitlens.showBlameHistory",
  1190. "when": "gitlens:isBlameable"
  1191. },
  1192. {
  1193. "command": "gitlens.showFileHistory",
  1194. "when": "gitlens:isTracked"
  1195. },
  1196. {
  1197. "command": "gitlens.showLastQuickPick",
  1198. "when": "gitlens:enabled"
  1199. },
  1200. {
  1201. "command": "gitlens.showQuickCommitDetails",
  1202. "when": "gitlens:isBlameable"
  1203. },
  1204. {
  1205. "command": "gitlens.showQuickCommitFileDetails",
  1206. "when": "gitlens:isBlameable"
  1207. },
  1208. {
  1209. "command": "gitlens.showQuickFileHistory",
  1210. "when": "gitlens:isTracked"
  1211. },
  1212. {
  1213. "command": "gitlens.showQuickBranchHistory",
  1214. "when": "gitlens:enabled"
  1215. },
  1216. {
  1217. "command": "gitlens.showQuickRepoHistory",
  1218. "when": "gitlens:enabled"
  1219. },
  1220. {
  1221. "command": "gitlens.showQuickRepoStatus",
  1222. "when": "gitlens:enabled"
  1223. },
  1224. {
  1225. "command": "gitlens.showQuickStashList",
  1226. "when": "gitlens:enabled"
  1227. },
  1228. {
  1229. "command": "gitlens.copyShaToClipboard",
  1230. "when": "gitlens:isBlameable"
  1231. },
  1232. {
  1233. "command": "gitlens.copyMessageToClipboard",
  1234. "when": "gitlens:isBlameable"
  1235. },
  1236. {
  1237. "command": "gitlens.closeUnchangedFiles",
  1238. "when": "gitlens:enabled"
  1239. },
  1240. {
  1241. "command": "gitlens.openChangedFiles",
  1242. "when": "gitlens:enabled"
  1243. },
  1244. {
  1245. "command": "gitlens.openBranchesInRemote",
  1246. "when": "gitlens:hasRemotes"
  1247. },
  1248. {
  1249. "command": "gitlens.openBranchInRemote",
  1250. "when": "gitlens:hasRemotes"
  1251. },
  1252. {
  1253. "command": "gitlens.openCommitInRemote",
  1254. "when": "gitlens:isBlameable && gitlens:hasRemotes"
  1255. },
  1256. {
  1257. "command": "gitlens.openFileInRemote",
  1258. "when": "gitlens:isTracked && gitlens:hasRemotes"
  1259. },
  1260. {
  1261. "command": "gitlens.openRepoInRemote",
  1262. "when": "gitlens:hasRemotes"
  1263. },
  1264. {
  1265. "command": "gitlens.stashApply",
  1266. "when": "gitlens:enabled"
  1267. },
  1268. {
  1269. "command": "gitlens.stashSave",
  1270. "when": "gitlens:enabled"
  1271. },
  1272. {
  1273. "command": "gitlens.resetSuppressedWarnings",
  1274. "when": "gitlens:enabled"
  1275. },
  1276. {
  1277. "command": "gitlens.gitExplorer.refresh",
  1278. "when": "false"
  1279. },
  1280. {
  1281. "command": "gitlens.gitExplorer.switchToHistoryView",
  1282. "when": "gitlens:gitExplorer:view == repository"
  1283. },
  1284. {
  1285. "command": "gitlens.gitExplorer.switchToRepositoryView",
  1286. "when": "gitlens:gitExplorer:view == history"
  1287. },
  1288. {
  1289. "command": "gitlens.gitExplorer.openChanges",
  1290. "when": "false"
  1291. },
  1292. {
  1293. "command": "gitlens.gitExplorer.openChangesWithWorking",
  1294. "when": "false"
  1295. },
  1296. {
  1297. "command": "gitlens.gitExplorer.openFile",
  1298. "when": "false"
  1299. },
  1300. {
  1301. "command": "gitlens.gitExplorer.openFileRevision",
  1302. "when": "false"
  1303. },
  1304. {
  1305. "command": "gitlens.gitExplorer.openFileRevisionInRemote",
  1306. "when": "false"
  1307. },
  1308. {
  1309. "command": "gitlens.gitExplorer.openChangedFiles",
  1310. "when": "false"
  1311. },
  1312. {
  1313. "command": "gitlens.gitExplorer.openChangedFileChanges",
  1314. "when": "false"
  1315. },
  1316. {
  1317. "command": "gitlens.gitExplorer.openChangedFileChangesWithWorking",
  1318. "when": "false"
  1319. },
  1320. {
  1321. "command": "gitlens.gitExplorer.openChangedFileRevisions",
  1322. "when": "false"
  1323. },
  1324. {
  1325. "command": "gitlens.gitExplorer.applyChanges",
  1326. "when": "false"
  1327. }
  1328. ],
  1329. "editor/context": [
  1330. {
  1331. "command": "gitlens.openFileInRemote",
  1332. "when": "editorTextFocus && gitlens:isTracked && gitlens:hasRemotes && config.gitlens.advanced.menus.editorContext.remote",
  1333. "group": "navigation@100"
  1334. },
  1335. {
  1336. "command": "gitlens.diffLineWithPrevious",
  1337. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.lineDiff",
  1338. "group": "1_gitlens@1"
  1339. },
  1340. {
  1341. "command": "gitlens.diffLineWithWorking",
  1342. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.lineDiff",
  1343. "group": "1_gitlens@2"
  1344. },
  1345. {
  1346. "command": "gitlens.showQuickCommitFileDetails",
  1347. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.details",
  1348. "group": "1_gitlens@3"
  1349. },
  1350. {
  1351. "command": "gitlens.diffWithPrevious",
  1352. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorContext.fileDiff",
  1353. "group": "1_gitlens_1@1"
  1354. },
  1355. {
  1356. "command": "gitlens.diffWithWorking",
  1357. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorContext.fileDiff",
  1358. "group": "1_gitlens_1@2"
  1359. },
  1360. {
  1361. "command": "gitlens.showQuickFileHistory",
  1362. "when": "gitlens:isTracked && config.gitlens.advanced.menus.editorContext.history",
  1363. "group": "3_gitlens@1"
  1364. },
  1365. {
  1366. "command": "gitlens.toggleFileBlame",
  1367. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.blame",
  1368. "group": "3_gitlens@2"
  1369. },
  1370. {
  1371. "command": "gitlens.copyShaToClipboard",
  1372. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.copy",
  1373. "group": "9_gitlens@1"
  1374. },
  1375. {
  1376. "command": "gitlens.copyMessageToClipboard",
  1377. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.copy",
  1378. "group": "9_gitlens@2"
  1379. }
  1380. ],
  1381. "editor/title": [
  1382. {
  1383. "command": "gitlens.toggleFileBlame",
  1384. "alt": "gitlens.toggleFileRecentChanges",
  1385. "when": "gitlens:isBlameable && !gitlens:annotationStatus && config.gitlens.advanced.menus.editorTitle.blame",
  1386. "group": "navigation@100"
  1387. },
  1388. {
  1389. "command": "gitlens.computingFileAnnotations",
  1390. "when": "gitlens:annotationStatus == computing && config.gitlens.advanced.menus.editorTitle.blame",
  1391. "group": "navigation@100"
  1392. },
  1393. {
  1394. "command": "gitlens.clearFileAnnotations",
  1395. "when": "gitlens:annotationStatus == computed && config.gitlens.advanced.menus.editorTitle.blame",
  1396. "group": "navigation@100"
  1397. },
  1398. {
  1399. "command": "gitlens.openFileInRemote",
  1400. "when": "gitlens:enabled && gitlens:hasRemotes && config.gitlens.advanced.menus.editorTitleContext.remote",
  1401. "group": "1_gitlens"
  1402. },
  1403. {
  1404. "command": "gitlens.openRepoInRemote",
  1405. "when": "gitlens:enabled && gitlens:hasRemotes && config.gitlens.advanced.menus.editorTitleContext.remote",
  1406. "group": "1_gitlens"
  1407. },
  1408. {
  1409. "command": "gitlens.diffWithPrevious",
  1410. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.fileDiff",
  1411. "group": "2_gitlens"
  1412. },
  1413. {
  1414. "command": "gitlens.diffWithWorking",
  1415. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.fileDiff",
  1416. "group": "2_gitlens"
  1417. },
  1418. {
  1419. "command": "gitlens.showQuickFileHistory",
  1420. "when": "editorFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.history",
  1421. "group": "2_gitlens_1"
  1422. },
  1423. {
  1424. "command": "gitlens.showQuickRepoHistory",
  1425. "when": "!editorFocus && gitlens:enabled && config.gitlens.advanced.menus.editorTitle.history",
  1426. "group": "2_gitlens_1"
  1427. },
  1428. {
  1429. "command": "gitlens.showQuickRepoStatus",
  1430. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitle.status",
  1431. "group": "2_gitlens_1"
  1432. }
  1433. ],
  1434. "editor/title/context": [
  1435. {
  1436. "command": "gitlens.openFileInRemote",
  1437. "when": "gitlens:enabled && gitlens:hasRemotes && config.gitlens.advanced.menus.editorTitleContext.remote",
  1438. "group": "1_gitlens"
  1439. },
  1440. {
  1441. "command": "gitlens.diffWithPrevious",
  1442. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.fileDiff",
  1443. "group": "1_gitlens_1@1"
  1444. },
  1445. {
  1446. "command": "gitlens.diffWithWorking",
  1447. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.fileDiff",
  1448. "group": "1_gitlens_1@2"
  1449. },
  1450. {
  1451. "command": "gitlens.showQuickFileHistory",
  1452. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.history",
  1453. "group": "1_gitlens_2@1"
  1454. },
  1455. {
  1456. "command": "gitlens.toggleFileBlame",
  1457. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.blame",
  1458. "group": "1_gitlens_2@2"
  1459. }
  1460. ],
  1461. "explorer/context": [
  1462. {
  1463. "command": "gitlens.openFileInRemote",
  1464. "when": "gitlens:enabled && gitlens:hasRemotes && config.gitlens.advanced.menus.explorerContext.remote",
  1465. "group": "navigation@100"
  1466. },
  1467. {
  1468. "command": "gitlens.diffWithPrevious",
  1469. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.fileDiff",
  1470. "group": "1_gitlens@1"
  1471. },
  1472. {
  1473. "command": "gitlens.diffWithWorking",
  1474. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.fileDiff",
  1475. "group": "1_gitlens@2"
  1476. },
  1477. {
  1478. "command": "gitlens.showQuickFileHistory",
  1479. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.history",
  1480. "group": "1_gitlens_1@1"
  1481. }
  1482. ],
  1483. "scm/resourceGroup/context": [
  1484. {
  1485. "command": "gitlens.openChangedFiles",
  1486. "when": "gitlens:enabled",
  1487. "group": "1_gitlens@1"
  1488. },
  1489. {
  1490. "command": "gitlens.closeUnchangedFiles",
  1491. "when": "gitlens:enabled",
  1492. "group": "1_gitlens@2"
  1493. },
  1494. {
  1495. "command": "gitlens.stashSave",
  1496. "when": "gitlens:enabled",
  1497. "group": "2_gitlens@1"
  1498. }
  1499. ],
  1500. "scm/resourceState/context": [
  1501. {
  1502. "command": "gitlens.openFileInRemote",
  1503. "when": "gitlens:enabled && gitlens:hasRemotes",
  1504. "group": "navigation"
  1505. },
  1506. {
  1507. "command": "gitlens.diffWithRevision",
  1508. "when": "gitlens:enabled",
  1509. "group": "1_gitlens@1"
  1510. },
  1511. {
  1512. "command": "gitlens.showQuickFileHistory",
  1513. "when": "gitlens:enabled",
  1514. "group": "1_gitlens_1@1"
  1515. },
  1516. {
  1517. "command": "gitlens.stashSave",
  1518. "when": "gitlens:enabled",
  1519. "group": "2_gitlens@1"
  1520. }
  1521. ],
  1522. "view/title": [
  1523. {
  1524. "command": "gitlens.showCommitSearch",
  1525. "when": "view == gitlens.gitExplorer",
  1526. "group": "navigation@1"
  1527. },
  1528. {
  1529. "command": "gitlens.gitExplorer.switchToHistoryView",
  1530. "when": "view == gitlens.gitExplorer && gitlens:gitExplorer:view == repository",
  1531. "group": "navigation@2"
  1532. },
  1533. {
  1534. "command": "gitlens.gitExplorer.switchToRepositoryView",
  1535. "when": "view == gitlens.gitExplorer && gitlens:gitExplorer:view == history",
  1536. "group": "navigation@3"
  1537. },
  1538. {
  1539. "command": "gitlens.gitExplorer.refresh",
  1540. "when": "view == gitlens.gitExplorer",
  1541. "group": "navigation@4"
  1542. }
  1543. ],
  1544. "view/item/context": [
  1545. {
  1546. "command": "gitlens.openBranchesInRemote",
  1547. "when": "view == gitlens.gitExplorer && viewItem == gitlens:branches:remote",
  1548. "group": "1_gitlens@1"
  1549. },
  1550. {
  1551. "command": "gitlens.openBranchInRemote",
  1552. "when": "view == gitlens.gitExplorer && viewItem == gitlens:branch-history:remote",
  1553. "group": "1_gitlens@1"
  1554. },
  1555. {
  1556. "command": "gitlens.openCommitInRemote",
  1557. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1558. "group": "1_gitlens@1"
  1559. },
  1560. {
  1561. "command": "gitlens.gitExplorer.openChangedFileChanges",
  1562. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1563. "group": "2_gitlens@1"
  1564. },
  1565. {
  1566. "command": "gitlens.gitExplorer.openChangedFileChangesWithWorking",
  1567. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1568. "group": "2_gitlens@1"
  1569. },
  1570. {
  1571. "command": "gitlens.gitExplorer.openChangedFiles",
  1572. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1573. "group": "3_gitlens@1"
  1574. },
  1575. {
  1576. "command": "gitlens.gitExplorer.openChangedFileRevisions",
  1577. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1578. "group": "3_gitlens@2"
  1579. },
  1580. {
  1581. "command": "gitlens.copyShaToClipboard",
  1582. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1583. "group": "4_gitlens@1"
  1584. },
  1585. {
  1586. "command": "gitlens.copyMessageToClipboard",
  1587. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1588. "group": "4_gitlens@2"
  1589. },
  1590. {
  1591. "command": "gitlens.showQuickCommitDetails",
  1592. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1593. "group": "5_gitlens@1"
  1594. },
  1595. {
  1596. "command": "gitlens.gitExplorer.openChanges",
  1597. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1598. "group": "1_gitlens@1"
  1599. },
  1600. {
  1601. "command": "gitlens.gitExplorer.openChangesWithWorking",
  1602. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1603. "group": "1_gitlens@2"
  1604. },
  1605. {
  1606. "command": "gitlens.gitExplorer.openFile",
  1607. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1608. "group": "2_gitlens@1"
  1609. },
  1610. {
  1611. "command": "gitlens.gitExplorer.openFileRevision",
  1612. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1613. "group": "2_gitlens@2"
  1614. },
  1615. {
  1616. "command": "gitlens.openFileInRemote",
  1617. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1618. "group": "3_gitlens@1"
  1619. },
  1620. {
  1621. "command": "gitlens.gitExplorer.openFileRevisionInRemote",
  1622. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1623. "group": "3_gitlens@2"
  1624. },
  1625. {
  1626. "command": "gitlens.gitExplorer.applyChanges",
  1627. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1628. "group": "4_gitlens@1"
  1629. },
  1630. {
  1631. "command": "gitlens.showQuickFileHistory",
  1632. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file && gitlens:gitExplorer:view == repository",
  1633. "group": "5_gitlens@1"
  1634. },
  1635. {
  1636. "command": "gitlens.showQuickCommitFileDetails",
  1637. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1638. "group": "5_gitlens@2"
  1639. },
  1640. {
  1641. "command": "gitlens.gitExplorer.openFile",
  1642. "when": "view == gitlens.gitExplorer && viewItem == gitlens:file-history",
  1643. "group": "1_gitlens@1"
  1644. },
  1645. {
  1646. "command": "gitlens.openFileInRemote",
  1647. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:file-history",
  1648. "group": "1_gitlens@2"
  1649. },
  1650. {
  1651. "command": "gitlens.openBranchesInRemote",
  1652. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:remote",
  1653. "group": "1_gitlens@1"
  1654. },
  1655. {
  1656. "command": "gitlens.openRepoInRemote",
  1657. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:remote",
  1658. "group": "1_gitlens@2"
  1659. },
  1660. {
  1661. "command": "gitlens.stashSave",
  1662. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stashes",
  1663. "group": "1_gitlens@1"
  1664. },
  1665. {
  1666. "command": "gitlens.stashApply",
  1667. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1668. "group": "1_gitlens@1"
  1669. },
  1670. {
  1671. "command": "gitlens.stashDelete",
  1672. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1673. "group": "1_gitlens@2"
  1674. },
  1675. {
  1676. "command": "gitlens.gitExplorer.openChangedFileChanges",
  1677. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1678. "group": "2_gitlens@1"
  1679. },
  1680. {
  1681. "command": "gitlens.gitExplorer.openChangedFileChangesWithWorking",
  1682. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1683. "group": "2_gitlens@1"
  1684. },
  1685. {
  1686. "command": "gitlens.gitExplorer.openChangedFiles",
  1687. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1688. "group": "3_gitlens@1"
  1689. },
  1690. {
  1691. "command": "gitlens.gitExplorer.openChangedFileRevisions",
  1692. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1693. "group": "3_gitlens@2"
  1694. },
  1695. {
  1696. "command": "gitlens.copyMessageToClipboard",
  1697. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1698. "group": "4_gitlens@1"
  1699. },
  1700. {
  1701. "command": "gitlens.gitExplorer.applyChanges",
  1702. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1703. "group": "1_gitlens@1"
  1704. },
  1705. {
  1706. "command": "gitlens.gitExplorer.openChanges",
  1707. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1708. "group": "2_gitlens@1"
  1709. },
  1710. {
  1711. "command": "gitlens.gitExplorer.openChangesWithWorking",
  1712. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1713. "group": "2_gitlens@2"
  1714. },
  1715. {
  1716. "command": "gitlens.gitExplorer.openFile",
  1717. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1718. "group": "3_gitlens@1"
  1719. },
  1720. {
  1721. "command": "gitlens.gitExplorer.openFileRevision",
  1722. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1723. "group": "3_gitlens@2"
  1724. },
  1725. {
  1726. "command": "gitlens.openFileInRemote",
  1727. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1728. "group": "4_gitlens@1"
  1729. },
  1730. {
  1731. "command": "gitlens.showQuickFileHistory",
  1732. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1733. "group": "5_gitlens@1"
  1734. },
  1735. {
  1736. "command": "gitlens.openRepoInRemote",
  1737. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:status",
  1738. "group": "1_gitlens@1"
  1739. },
  1740. {
  1741. "command": "gitlens.gitExplorer.refresh",
  1742. "when": "view == gitlens.gitExplorer && viewItem != gitlens:commit-file && viewItem != gitlens:stash-file",
  1743. "group": "9_gitlens@1"
  1744. }
  1745. ]
  1746. },
  1747. "keybindings": [
  1748. {
  1749. "command": "gitlens.key.left",
  1750. "key": "alt+left",
  1751. "when": "gitlens:key:left"
  1752. },
  1753. {
  1754. "command": "gitlens.key.right",
  1755. "key": "alt+right",
  1756. "when": "gitlens:key:right"
  1757. },
  1758. {
  1759. "command": "gitlens.key.,",
  1760. "key": "alt+,",
  1761. "when": "gitlens:key:,"
  1762. },
  1763. {
  1764. "command": "gitlens.key..",
  1765. "key": "alt+.",
  1766. "when": "gitlens:key:."
  1767. },
  1768. {
  1769. "command": "gitlens.key.escape",
  1770. "key": "escape",
  1771. "when": "gitlens:key:escape"
  1772. },
  1773. {
  1774. "command": "gitlens.toggleFileBlame",
  1775. "key": "alt+b",
  1776. "when": "editorTextFocus && gitlens:isTracked"
  1777. },
  1778. {
  1779. "command": "gitlens.toggleCodeLens",
  1780. "key": "shift+alt+b",
  1781. "when": "editorTextFocus && gitlens:isTracked && gitlens:canToggleCodeLens"
  1782. },
  1783. {
  1784. "command": "gitlens.showLastQuickPick",
  1785. "key": "alt+-",
  1786. "when": "gitlens:enabled"
  1787. },
  1788. {
  1789. "command": "gitlens.showCommitSearch",
  1790. "key": "alt+/",
  1791. "when": "gitlens:enabled"
  1792. },
  1793. {
  1794. "command": "gitlens.showQuickFileHistory",
  1795. "key": "alt+h",
  1796. "when": "gitlens:enabled"
  1797. },
  1798. {
  1799. "command": "gitlens.showQuickRepoHistory",
  1800. "key": "shift+alt+h",
  1801. "when": "gitlens:enabled"
  1802. },
  1803. {
  1804. "command": "gitlens.showQuickRepoStatus",
  1805. "key": "alt+s",
  1806. "when": "gitlens:enabled"
  1807. },
  1808. {
  1809. "command": "gitlens.showQuickCommitFileDetails",
  1810. "key": "alt+c",
  1811. "when": "editorTextFocus && gitlens:enabled"
  1812. },
  1813. {
  1814. "command": "gitlens.diffWithNext",
  1815. "key": "alt+.",
  1816. "when": "editorTextFocus && gitlens:isTracked"
  1817. },
  1818. {
  1819. "command": "gitlens.diffLineWithPrevious",
  1820. "key": "shift+alt+,",
  1821. "when": "editorTextFocus && gitlens:isTracked"
  1822. },
  1823. {
  1824. "command": "gitlens.diffWithPrevious",
  1825. "key": "alt+,",
  1826. "when": "editorTextFocus && gitlens:isTracked"
  1827. },
  1828. {
  1829. "command": "gitlens.diffLineWithWorking",
  1830. "key": "alt+w",
  1831. "when": "editorTextFocus && gitlens:isTracked"
  1832. },
  1833. {
  1834. "command": "gitlens.diffWithWorking",
  1835. "key": "shift+alt+w",
  1836. "when": "editorTextFocus && gitlens:isTracked"
  1837. }
  1838. ],
  1839. "views": {
  1840. "explorer": [
  1841. {
  1842. "id": "gitlens.gitExplorer",
  1843. "name": "GitLens",
  1844. "when": "gitlens:enabled"
  1845. }
  1846. ]
  1847. }
  1848. },
  1849. "activationEvents": [
  1850. "*"
  1851. ],
  1852. "scripts": {
  1853. "clean": "git clean -xdf",
  1854. "compile": "tslint --project tslint.json && tsc -p ./",
  1855. "watch": "tsc -watch -p ./",
  1856. "lint": "tslint --project tslint.json",
  1857. "pack": "git clean -xdf && vsce package",
  1858. "postinstall": "node ./node_modules/vscode/bin/install",
  1859. "pub": "git clean -xdf && vsce publish",
  1860. "reset": "git clean -xdf && npm install",
  1861. "vscode:prepublish": "npm install --no-save && npm run compile"
  1862. },
  1863. "dependencies": {
  1864. "applicationinsights": "0.21.0",
  1865. "copy-paste": "1.3.0",
  1866. "datauri": "^1.0.5",
  1867. "iconv-lite": "0.4.19",
  1868. "ignore": "3.3.5",
  1869. "lodash.debounce": "4.0.8",
  1870. "lodash.escaperegexp": "4.1.2",
  1871. "lodash.isequal": "4.5.0",
  1872. "lodash.once": "4.1.1",
  1873. "moment": "2.18.1",
  1874. "spawn-rx": "2.0.11",
  1875. "string-width": "2.1.1",
  1876. "tmp": "0.0.33"
  1877. },
  1878. "devDependencies": {
  1879. "@types/copy-paste": "1.1.30",
  1880. "@types/iconv-lite": "0.0.1",
  1881. "@types/mocha": "2.2.43",
  1882. "@types/node": "8.0.28",
  1883. "@types/tmp": "0.0.33",
  1884. "mocha": "3.5.2",
  1885. "tslint": "5.7.0",
  1886. "typescript": "2.5.2",
  1887. "vscode": "1.1.5"
  1888. }
  1889. }