-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.42 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.42 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "loki-drp",
"displayName": "Loki Discord Presence",
"description": "A simple discord rich presence extension for vscode",
"version": "1.0.5",
"private": true,
"publisher": "LokiScripts",
"author": {
"name": "Loki",
"email": "[email protected]"
},
"keywords": [
"discord",
"vscode",
"rich",
"presence",
"rich presence",
"rpc",
"vsc",
"activity",
"status"
],
"repository": {
"type": "git",
"url": "https://github.com/LokiLeiche/Loki_DRP.git"
},
"bugs": {
"url": "https://github.com/LokiLeiche/Loki_DRP/issues"
},
"homepage": "https://github.com/LokiLeiche/Loki_DRP#readme",
"engines": {
"vscode": "^1.100.0"
},
"categories": [
"Other"
],
"icon": "icon.png",
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"extensionKind": [
"ui"
],
"contributes": {
"configuration": {
"title": "Loki Discord Rich Presence",
"properties": {
"loki-drp.secretWorkspaces": {
"type": "array",
"default": [],
"description": "List of workspace names (folder names) to hide in Discord activity",
"items": {
"type": "string"
}
},
"loki-drp.secretWorkspaceText": {
"type": "string",
"default": "secret",
"description": "What the workspace name will be replaced with for secret workspaces"
},
"loki-drp.useVSCodeLogo": {
"type": "boolean",
"default": false,
"description": "Use VSCode logo instead of the authors logo"
},
"loki-drp.linkGithubRepo": {
"type": "boolean",
"default": true,
"description": "Add a button under your activity that links to the github repo that you currently work in"
},
"loki-drp.persistentTimer": {
"type": "boolean",
"default": true,
"description": "This way the timer in the discord acitvity is persistent for up to 5 minutes, so it doesn't reset when switching workspaces or restarting VSCode"
},
"loki-drp.versionCheck": {
"type": "boolean",
"default": true,
"description": "Check for new versions"
},
"loki-drp.fileText": {
"type": "string",
"default": "Editing %s",
"description": "The text to what you're editing, %s will be replaced with the file you have open"
},
"loki-drp.workspaceText": {
"type": "string",
"default": "Workspace: %s",
"description": "The text to display as what workspace you are in, %s will be replaced with the name of the folder you have open"
},
"loki-drp.idleText": {
"type": "string",
"default": "Idling",
"description": "The text to display when not doing anything"
}
}
}
},
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map"
},
"devDependencies": {
"@types/discord-rpc": "^4.0.9",
"@types/node": "20.x",
"@types/vscode": "^1.100.0",
"eslint": "^9.25.1",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.7",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"bufferutil": "^4.0.9",
"discord-rpc": "^4.0.1",
"electron": "^38.0.0",
"utf-8-validate": "^5.0.10"
}
}