discord-vscode/package.json

75 lines
1.6 KiB
JSON

{
"name": "discord-vscode",
"displayName": "Discord VSCode",
"version": "0.1.0",
"description": "Update your discord status with the newly added rich presence.",
"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": {
"configuration": [
{
"title": "Visual Studio Code Discord Configuration",
"type": "object",
"properties": {
"discord.clientID": {
"type": "string",
"default": "383226320970055681",
"description": "Only modify this if you know what you are doing (most of you don't)."
}
}
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/iCrawl/discord-vscode.git"
},
"bugs": {
"url": "https://github.com/iCrawl/discord-vscode/issues"
},
"keywords": [
"discord",
"vscode",
"status",
"update",
"rich",
"presence",
"rpc",
"rich presence"
],
"categories": [
"Other"
],
"homepage": "https://github.com/iCrawl/discord-vscode#readme",
"icon": "assets/icon.png",
"galleryBanner": {
"theme": "dark"
},
"dependencies": {
"discord-rpc": "^3.0.0-beta.2"
},
"devDependencies": {
"@types/node": "^8.0.0",
"tslint": "^5.0.0",
"typescript": "^2.0.0",
"vscode": "^1.0.0"
},
"engines": {
"vscode": "^1.15.0"
}
}