discord-vscode/package.json

138 lines
3.7 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",
2017-11-26 23:27:11 +00:00
"version": "0.11.1",
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"
},
"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": [
"*"
],
"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"
2017-11-23 23:53:16 +00:00
}
],
"configuration": [
{
"title": "Discord Presence Configuration",
"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,
"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"
},
"discord.details": {
"type": "string",
"default": "Editing {filename}",
"description": "Custom string for the details section of the rich presence"
},
"discord.detailsIdle": {
"type": "string",
"default": "Idling.",
"description": "Custom string for the details section of the rich presence when idling"
},
"discord.workspace": {
"type": "string",
"default": "Workspace: {workspace}",
"description": "Custom string for the state section of the rich presence"
},
"discord.workspaceIdle": {
"type": "string",
"default": "Idling.",
"description": "Custom string for the state section of the rich presence when idling"
},
"discord.workspaceNotFound": {
"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",
"default": "",
"description": "Custom string for the largeImageText section of the rich presence"
},
"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"
}
}
}
]
},
"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": {
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"
}
}