-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.98 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ishowoff",
"displayName": "ishowoff",
"description": "Show off your coding sessions on your Github profile. Its like Discord RPC, but for Github",
"icon": "images/icon.png",
"publisher": "parapsychic",
"version": "0.1.0",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"repository": {
"type": "git",
"url": "https://github.com/parapsychic/ishowoff_vscode.git"
},
"contributes": {
"configuration": {
"title": "IShowOff",
"properties": {
"ishowoff.github.username": {
"type": "string",
"default": "parapsychic",
"markdownDescription": "Your username"
},
"ishowoff.github.actionsRepo": {
"type": "string",
"default": "ishowoff",
"markdownDescription": "Please fork [parapsychic/ishowoff](https://github.com/parapsychic/ishowoff) to your account and enter the name of the fork. If you left it on default, it should be ishowoff."
},
"ishowoff.github.token": {
"type": "string",
"default": "XXXXXXXX",
"markdownDescription": "Generate a Personal Access Token from Github. [See how](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens). Expiration date is recommended. Please note that I won't be responsible for keys being stolen, please keep it secure."
},
"ishowoff.github.interval": {
"type": "number",
"default": 10,
"markdownDescription": "An API request to update your session will be sent in this interval (in minutes)."
},
"ishowoff.formatting.theme": {
"type": "string",
"default": "dark",
"markdownDescription": "Choose between themes. dark/light by default. You can set each fonts and colors individually. [See how](https://github.com/parapsychic/ishowoff)."
},
"ishowoff.runs.customCommands": {
"type": "string",
"default": " ",
"markdownDescription": "These custom commands will be directly supplied while running the action. These commands are not checked for correctness. Please proceed at your own risk. See [here)(https://github.com/parapsychic/ishowoff_vscode/blob/main/README.md#custom-commands)"
}
}
},
"commands": [
{
"command": "ishowoff.activatePresence",
"title": "Start ShowOff"
},
{
"command": "ishowoff.disablePresence",
"title": "Stop ShowOff"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.85.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.54.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@octokit/core": "^5.0.2"
}
}