discord-vscode/package.json

220 lines
11 KiB
JSON
Raw Normal View History

2017-11-23 13:06:21 +00:00
{
"name": "discord-vscode",
2017-11-23 20:51:01 +00:00
"displayName": "Discord Presence",
2020-04-20 06:55:25 +00:00
"version": "3.14.0",
2017-11-23 13:06:21 +00:00
"description": "Update your discord status with the newly added rich presence.",
"private": true,
2017-11-23 13:06:21 +00:00
"author": {
"name": "iCrawl",
"email": "icrawltogo@gmail.com"
},
"contributors": [
{
"name": "Frangu Vlad",
"email": "kingdgrizzle@gmail.com"
}
],
2017-11-23 13:06:21 +00:00
"publisher": "icrawl",
"license": "MIT",
"main": "./dist/extension",
2017-11-23 13:06:21 +00:00
"scripts": {
2020-01-25 20:22:31 +00:00
"prebuild": "pnpm run lint",
"build": "webpack --mode production",
2020-01-14 10:56:50 +00:00
"tsc": "tsc",
2019-09-22 16:56:19 +00:00
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
2017-11-23 13:06:21 +00:00
},
"activationEvents": [
"*"
],
2020-03-21 20:49:43 +00:00
"extensionKind": [
"ui"
],
"contributes": {
2017-11-23 23:53:16 +00:00
"commands": [
{
"command": "discord.enable",
"title": "Enable Discord Presence in the Current Workspace",
2017-11-26 13:28:55 +00:00
"category": "Discord Presence"
},
{
"command": "discord.disable",
"title": "Disable Discord Presence in the Current Workspace",
2017-11-26 13:28:55 +00:00
"category": "Discord Presence"
},
{
"command": "discord.reconnect",
"title": "Reconnect Discord Presence to Discord RPC",
"category": "Discord Presence"
},
{
"command": "discord.disconnect",
"title": "Disconnect Discord Presence from 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"
2017-11-23 23:53:16 +00:00
}
],
"configuration": [
{
"title": "Discord Presence Configuration",
"type": "object",
"properties": {
"discord.clientID": {
"type": "string",
"default": "383226320970055681",
2019-04-11 16:45:44 +00:00
"description": "Only modify this if you know what you are doing"
2017-11-23 23:53:16 +00:00
},
"discord.enabled": {
"type": "boolean",
"default": true,
"description": "Controls if the Discord Presence should show across all workspaces"
2017-11-24 12:53:47 +00:00
},
"discord.detailsEditing": {
2017-11-24 12:53:47 +00:00
"type": "string",
"default": "Editing {filename}",
2019-11-03 04:00:31 +00:00
"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- '{workspaceFolder}' will be replaced with the currently accessed workspace folder, if any.\n\t- '{workspaceAndFolder} will be replaced with the currently accessed workspace and workspace folder like this: 'Workspace - WorkspaceFolder'\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.\n\t- '{gitreponame}' will be replaced with the active Git repository name (from the git URL)\n\t- '{gitbranch}' will be replaced with the current active branch name."
2017-11-24 12:53:47 +00:00
},
"discord.detailsDebugging": {
"type": "string",
"default": "Debugging {filename}",
2019-11-03 04:00:31 +00:00
"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- '{workspaceFolder}' will be replaced with the currently accessed workspace folder, if any.\n\t- '{workspaceAndFolder} will be replaced with the currently accessed workspace and workspace folder like this: 'Workspace - WorkspaceFolder'\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.\n\t- '{gitreponame}' will be replaced with the active Git repository name (from the git URL)\n\t- '{gitbranch}' will be replaced with the current active branch name."
},
2017-11-24 12:53:47 +00:00
"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."
2017-11-24 12:53:47 +00:00
},
"discord.lowerDetailsEditing": {
2017-11-24 12:53:47 +00:00
"type": "string",
"default": "Workspace: {workspace}",
2019-11-03 04:00:31 +00:00
"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- '{workspaceFolder}' will be replaced with the currently accessed workspace folder, if any.\n\t- '{workspaceAndFolder} will be replaced with the currently accessed workspace and workspace folder like this: 'Workspace - WorkspaceFolder'\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.\n\t- '{gitreponame}' will be replaced with the active Git repository name (from the git URL)\n\t- '{gitbranch}' will be replaced with the current active branch name."
2017-11-24 12:53:47 +00:00
},
"discord.lowerDetailsDebugging": {
2017-11-24 12:53:47 +00:00
"type": "string",
"default": "Debugging: {workspace}",
2019-11-03 04:00:31 +00:00
"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- '{workspaceFolder}' will be replaced with the currently accessed workspace folder, if any.\n\t- '{workspaceAndFolder} will be replaced with the currently accessed workspace and workspace folder like this: 'Workspace - WorkspaceFolder'\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.\n\t- '{gitreponame}' will be replaced with the active Git repository name (from the git URL)\n\t- '{gitbranch}' will be replaced with the current active branch name."
},
"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."
2017-11-24 12:53:47 +00:00
},
"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."
},
2017-11-24 12:53:47 +00:00
"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"
2017-11-24 12:53:47 +00:00
},
"discord.largeImageIdle": {
"type": "string",
"default": "Idling",
"description": "Custom string for the largeImageText section of the rich presence when idling"
},
"discord.smallImage": {
"type": "string",
2017-11-26 21:16:11 +00:00
"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"
},
"discord.workspaceExcludePatterns": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Patterns of workspaces to ignore"
}
}
}
]
},
"repository": {
"type": "git",
2017-11-23 19:49:13 +00:00
"url": "https://github.com/iCrawl/discord-vscode.git"
},
"bugs": {
"url": "https://github.com/iCrawl/discord-vscode/issues"
},
"keywords": [
"discord",
"vscode",
"rich",
"presence",
2017-11-23 19:09:42 +00:00
"rich presence",
"rpc"
],
"categories": [
"Other"
],
"homepage": "https://github.com/iCrawl/discord-vscode#readme",
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#6477C1",
"theme": "dark"
},
2017-11-23 13:06:21 +00:00
"dependencies": {
"bufferutil": "^4.0.1",
"discord-rpc": "discordjs/RPC",
"utf-8-validate": "^5.0.2",
2020-04-20 06:55:25 +00:00
"vsls": "^1.0.1830"
2017-11-23 13:06:21 +00:00
},
2020-01-25 20:22:31 +00:00
"optionalDependencies": {
"register-scheme": "devsnek/node-register-scheme"
},
2017-11-23 13:06:21 +00:00
"devDependencies": {
2020-05-23 03:34:15 +00:00
"@types/node": "^14.0.5",
"@types/vscode": "^1.45.1",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"clean-webpack-plugin": "^3.0.0",
2020-05-23 03:34:15 +00:00
"eslint": "^7.1.0",
"eslint-config-marine": "^7.1.2",
"eslint-config-prettier": "^6.11.0",
2020-04-20 06:55:25 +00:00
"eslint-plugin-prettier": "^3.1.3",
2020-05-23 03:34:15 +00:00
"prettier": "^2.0.5",
"terser-webpack-plugin": "^3.0.1",
"ts-loader": "^7.0.4",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
2020-04-20 06:55:25 +00:00
"webpack-cli": "^3.3.11"
2017-11-23 13:06:21 +00:00
},
"engines": {
2020-05-23 03:34:15 +00:00
"vscode": "^1.45.0"
},
"eslintConfig": {
2019-09-22 16:56:19 +00:00
"extends": "marine/prettier/node"
2017-11-23 13:06:21 +00:00
}
}