2017-11-23 13:06:21 +00:00
{
"name" : "discord-vscode" ,
2017-11-23 20:51:01 +00:00
"displayName" : "Discord Presence" ,
2018-01-06 18:09:48 +00:00
"version" : "2.1.0" ,
2017-11-23 13:06:21 +00:00
"description" : "Update your discord status with the newly added rich presence." ,
2017-11-26 10:16:25 +00:00
"private" : true ,
2017-11-23 13:06:21 +00:00
"author" : {
"name" : "iCrawl" ,
"email" : "icrawltogo@gmail.com"
} ,
2018-02-04 16:29:40 +00:00
"contributors" : [
{
"name" : "Frangu Vlad" ,
"email" : "kingdgrizzle@gmail.com"
}
] ,
2017-11-23 13:06:21 +00:00
"publisher" : "icrawl" ,
"license" : "MIT" ,
"main" : "./out/src/extension" ,
"scripts" : {
"vscode:prepublish" : "tsc -p ./" ,
"compile" : "tsc -watch -p ./" ,
"postinstall" : "node ./node_modules/vscode/bin/install" ,
"test" : "node ./node_modules/vscode/bin/test" ,
"lint" : "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'"
} ,
"activationEvents" : [
"*"
] ,
2017-11-23 15:21:46 +00:00
"contributes" : {
2017-11-23 23:53:16 +00:00
"commands" : [
{
2017-11-24 03:42:51 +00:00
"command" : "discord.enable" ,
"title" : "Enable Discord Presence in the current workspace" ,
2017-11-26 13:28:55 +00:00
"category" : "Discord Presence"
2017-11-24 03:42:51 +00:00
} ,
{
"command" : "discord.disable" ,
"title" : "Disable Discord Presence in the current workspace" ,
2017-11-26 13:28:55 +00:00
"category" : "Discord Presence"
2017-11-23 23:53:16 +00:00
}
] ,
2017-11-23 15:21:46 +00:00
"configuration" : [
{
2017-11-24 03:42:51 +00:00
"title" : "Discord Presence Configuration" ,
2017-11-23 15:21:46 +00:00
"type" : "object" ,
"properties" : {
"discord.clientID" : {
"type" : "string" ,
"default" : "383226320970055681" ,
2017-11-24 12:53:47 +00:00
"description" : "Only modify this if you know what you are doing (most of you don't)"
2017-11-23 23:53:16 +00:00
} ,
"discord.enabled" : {
"type" : "boolean" ,
"default" : true ,
2017-11-24 03:42:51 +00:00
"description" : "Controls if Discord Presence is active"
2017-11-24 12:53:47 +00:00
} ,
"discord.reconnectThreshold" : {
"type" : "number" ,
"default" : 20 ,
"description" : "Decides how often a reconnect attempt should be made before stopping"
} ,
2017-11-27 01:14:32 +00:00
"discord.detailsEditing" : {
2017-11-24 12:53:47 +00:00
"type" : "string" ,
"default" : "Editing {filename}" ,
"description" : "Custom string for the details section of the rich presence"
} ,
2017-11-27 01:14:32 +00:00
"discord.detailsDebugging" : {
"type" : "string" ,
"default" : "Editing {filename}" ,
"description" : "Custom string for the details section of the rich presence when debugging"
} ,
2017-11-24 12:53:47 +00:00
"discord.detailsIdle" : {
"type" : "string" ,
2017-11-27 01:14:32 +00:00
"default" : "Idling" ,
2017-11-24 12:53:47 +00:00
"description" : "Custom string for the details section of the rich presence when idling"
} ,
2017-11-27 01:14:32 +00:00
"discord.lowerDetailsEditing" : {
2017-11-24 12:53:47 +00:00
"type" : "string" ,
"default" : "Workspace: {workspace}" ,
"description" : "Custom string for the state section of the rich presence"
} ,
2017-11-27 01:14:32 +00:00
"discord.lowerDetailsDebugging" : {
2017-11-24 12:53:47 +00:00
"type" : "string" ,
2017-11-27 01:14:32 +00:00
"default" : "Debugging: {workspace}" ,
"description" : "Custom string for the state section of the rich presence when debugging"
} ,
"discord.lowerDetailsIdle" : {
"type" : "string" ,
"default" : "Idling" ,
2017-11-24 12:53:47 +00:00
"description" : "Custom string for the state section of the rich presence when idling"
} ,
2017-11-27 01:14:32 +00:00
"discord.lowerDetailsNotFound" : {
2017-11-24 20:00:52 +00:00
"type" : "string" ,
"default" : "No workspace." ,
"description" : "Custom string for the state section of the rich presence when no workspace is found"
} ,
2017-11-24 12:53:47 +00:00
"discord.largeImage" : {
"type" : "string" ,
2018-02-04 16:06:42 +00:00
"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}" ,
2017-11-24 12:53:47 +00:00
"description" : "Custom string for the smallImageText section of the rich presence"
2017-12-07 18:43:37 +00:00
} ,
"discord.silent" : {
"type" : "boolean" ,
"default" : false ,
"description" : "Decides if error messages are shown to the user"
2017-12-20 05:22:11 +00:00
} ,
"discord.workspaceElapsedTime" : {
"type" : "boolean" ,
"default" : false ,
"description" : "Decides whether to display elapsed time for a workspace or a single file"
2017-11-23 15:21:46 +00:00
}
}
}
]
} ,
"repository" : {
"type" : "git" ,
2017-11-23 19:49:13 +00:00
"url" : "https://github.com/iCrawl/discord-vscode.git"
2017-11-23 15:21:46 +00:00
} ,
"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"
2017-11-23 15:21:46 +00:00
] ,
"categories" : [
"Other"
] ,
"homepage" : "https://github.com/iCrawl/discord-vscode#readme" ,
"icon" : "assets/icon.png" ,
"galleryBanner" : {
2017-11-23 19:43:10 +00:00
"color" : "#6477C1" ,
2017-11-23 15:21:46 +00:00
"theme" : "dark"
} ,
2017-11-23 13:06:21 +00:00
"dependencies" : {
2017-11-23 19:09:42 +00:00
"discord-rpc" : "github:iCrawl/discord-rpc#no-peer-deps"
2017-11-23 13:06:21 +00:00
} ,
"devDependencies" : {
"@types/node" : "^8.0.0" ,
"tslint" : "^5.0.0" ,
"typescript" : "^2.0.0" ,
"vscode" : "^1.0.0"
} ,
"engines" : {
"vscode" : "^1.15.0"
}
}