4c01c27b09
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 3.4.3 to 3.4.4. <details> <summary>Commits</summary> - See full diff in [compare view](https://github.com/Microsoft/TypeScript/commits) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=typescript&package-manager=npm_and_yarn&previous-version=3.4.3&new-version=3.4.4)](https://dependabot.com/compatibility-score.html?dependency-name=typescript&package-manager=npm_and_yarn&previous-version=3.4.3&new-version=3.4.4) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot. </details>
191 lines
8.3 KiB
JSON
191 lines
8.3 KiB
JSON
{
|
|
"name": "discord-vscode",
|
|
"displayName": "Discord Presence",
|
|
"version": "3.4.0",
|
|
"description": "Update your discord status with the newly added rich presence.",
|
|
"private": true,
|
|
"author": {
|
|
"name": "iCrawl",
|
|
"email": "icrawltogo@gmail.com"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Frangu Vlad",
|
|
"email": "kingdgrizzle@gmail.com"
|
|
}
|
|
],
|
|
"publisher": "icrawl",
|
|
"license": "MIT",
|
|
"main": "./dist/extension",
|
|
"scripts": {
|
|
"prebuild": "yarn lint",
|
|
"build": "gulp",
|
|
"lint": "tslint -p tsconfig.json",
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
},
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "discord.enable",
|
|
"title": "Enable Discord Presence in the Current Workspace",
|
|
"category": "Discord Presence"
|
|
},
|
|
{
|
|
"command": "discord.disable",
|
|
"title": "Disable Discord Presence in the Current Workspace",
|
|
"category": "Discord Presence"
|
|
},
|
|
{
|
|
"command": "discord.reconnect",
|
|
"title": "Reconnect Discord Presence to Discord RPC",
|
|
"category": "Discord Presence"
|
|
},
|
|
{
|
|
"command": "discord.allowSpectate",
|
|
"title": "Allow Spectating",
|
|
"category": "Discord Presence"
|
|
},
|
|
{
|
|
"command": "discord.disableSpectate",
|
|
"title": "Disable Spectating",
|
|
"category": "Discord Presence"
|
|
},
|
|
{
|
|
"command": "discord.allowJoinRequests",
|
|
"title": "Allow Join Requests",
|
|
"category": "Discord Presence"
|
|
},
|
|
{
|
|
"command": "discord.disableJoinRequests",
|
|
"title": "Disable Join Requests",
|
|
"category": "Discord Presence"
|
|
}
|
|
],
|
|
"configuration": [
|
|
{
|
|
"title": "Discord Presence Configuration",
|
|
"type": "object",
|
|
"properties": {
|
|
"discord.clientID": {
|
|
"type": "string",
|
|
"default": "383226320970055681",
|
|
"description": "Only modify this if you know what you are doing"
|
|
},
|
|
"discord.enabled": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Controls if the Discord Presence should show across all workspaces"
|
|
},
|
|
"discord.detailsEditing": {
|
|
"type": "string",
|
|
"default": "Editing {filename}",
|
|
"description": "Custom string for the details section of the rich presence\n\t- '{null}' will be replaced with an empty space.\n\t- '{filename}' will be replaced with the current file name.\n\t- '{dirname}' will get replaced with the folder name that has the current file.\n\t- '{fulldirname}' will get replaced with the full directory name without the current file name.\n\t- '{workspace}' will be replaced with the current workspace name, if any.\n\t- '{currentcolumn}' will get replaced with the current column of the current line.\n\t- '{currentline}' will get replaced with the current line number.\n\t- '{totallines}' will get replaced with the total line number.\n\t- '{filesize}' will get replaced with the current file's size."
|
|
},
|
|
"discord.detailsDebugging": {
|
|
"type": "string",
|
|
"default": "Debugging {filename}",
|
|
"description": "Custom string for the details section of the rich presence when debugging\n\t- '{null}' will be replaced with an empty space.\n\t- '{filename}' will be replaced with the current file name.\n\t- '{dirname}' will get replaced with the folder name that has the current file.\n\t- '{fulldirname}' will get replaced with the full directory name without the current file name.\n\t- '{workspace}' will be replaced with the current workspace name, if any.\n\t- '{currentcolumn}' will get replaced with the current column of the current line.\n\t- '{currentline}' will get replaced with the current line number.\n\t- '{totallines}' will get replaced with the total line number.\n\t- '{filesize}' will get replaced with the current file's size."
|
|
},
|
|
"discord.detailsIdle": {
|
|
"type": "string",
|
|
"default": "Idling",
|
|
"description": "Custom string for the details section of the rich presence when idling\n\t- '{null}' will be replaced with an empty space."
|
|
},
|
|
"discord.lowerDetailsEditing": {
|
|
"type": "string",
|
|
"default": "Workspace: {workspace}",
|
|
"description": "Custom string for the state section of the rich presence\n\t- '{null}' will be replaced with an empty space.\n\t- '{filename}' will be replaced with the current file name.\n\t- '{dirname}' will get replaced with the folder name that has the current file.\n\t- '{fulldirname}' will get replaced with the full directory name without the current file name.\n\t- '{workspace}' will be replaced with the current workspace name, if any.\n\t- '{currentcolumn}' will get replaced with the current column of the current line.\n\t- '{currentline}' will get replaced with the current line number.\n\t- '{totallines}' will get replaced with the total line number.\n\t- '{filesize}' will get replaced with the current file's size."
|
|
},
|
|
"discord.lowerDetailsDebugging": {
|
|
"type": "string",
|
|
"default": "Debugging: {workspace}",
|
|
"description": "Custom string for the state section of the rich presence when debugging\n\t- '{null}' will be replaced with an empty space.\n\t- '{filename}' will be replaced with the current file name.\n\t- '{dirname}' will get replaced with the folder name that has the current file.\n\t- '{fulldirname}' will get replaced with the full directory name without the current file name..\n\t- '{workspace}' will be replaced with the current workspace name, if any.\n\t- '{currentcolumn}' will get replaced with the current column of the current line.\n\t- '{currentline}' will get replaced with the current line number.\n\t- '{totallines}' will get replaced with the total line number.\n\t- '{filesize}' will get replaced with the current file's size."
|
|
},
|
|
"discord.lowerDetailsIdle": {
|
|
"type": "string",
|
|
"default": "Idling",
|
|
"description": "Custom string for the state section of the rich presence when idling\n\t- '{null}' will be replaced with an empty space."
|
|
},
|
|
"discord.lowerDetailsNotFound": {
|
|
"type": "string",
|
|
"default": "No workspace.",
|
|
"description": "Custom string for the state section of the rich presence when no workspace is found.\nIf set to '{null}', this will be an empty space.\n\t- '{currentline}' will get replaced with the current line number.\n\t- '{totallines}' will get replaced with the total line number.\n\t- '{filesize}' will get replaced with the current file's size."
|
|
},
|
|
"discord.largeImage": {
|
|
"type": "string",
|
|
"default": "Editing a {LANG} file",
|
|
"description": "Custom string for the largeImageText section of the rich presence.\n\t- '{lang}' will be replaced with the lowercased language ID\n\t- '{LANG}' will be replaced with the uppercased language ID"
|
|
},
|
|
"discord.largeImageIdle": {
|
|
"type": "string",
|
|
"default": "Idling",
|
|
"description": "Custom string for the largeImageText section of the rich presence when idling"
|
|
},
|
|
"discord.smallImage": {
|
|
"type": "string",
|
|
"default": "{appname}",
|
|
"description": "Custom string for the smallImageText section of the rich presence\n\t- '{appname}' will get replaced with the current Visual Studio Code version."
|
|
},
|
|
"discord.silent": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Decides if error messages are shown to the user"
|
|
},
|
|
"discord.workspaceElapsedTime": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Decides whether to display elapsed time for a workspace or a single file"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/iCrawl/discord-vscode.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/iCrawl/discord-vscode/issues"
|
|
},
|
|
"keywords": [
|
|
"discord",
|
|
"vscode",
|
|
"rich",
|
|
"presence",
|
|
"rich presence",
|
|
"rpc"
|
|
],
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"homepage": "https://github.com/iCrawl/discord-vscode#readme",
|
|
"icon": "assets/icon.png",
|
|
"galleryBanner": {
|
|
"color": "#6477C1",
|
|
"theme": "dark"
|
|
},
|
|
"dependencies": {
|
|
"clipboardy": "^2.0.0",
|
|
"discord-rpc": "iCrawl/rpc#custom",
|
|
"register-scheme": "devsnek/node-register-scheme",
|
|
"vsls": "^0.3.1291"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^11.13.5",
|
|
"fs-nextra": "^0.4.5",
|
|
"gulp": "^3.9.1",
|
|
"gulp-sourcemaps": "^2.6.5",
|
|
"gulp-typescript": "^5.0.1",
|
|
"merge2": "^1.2.3",
|
|
"tslint": "^5.16.0",
|
|
"tslint-config-fire": "^1.0.1",
|
|
"typescript": "^3.4.4",
|
|
"vscode": "^1.1.33"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.15.0"
|
|
}
|
|
}
|