-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.72 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "dis-track",
"displayName": "Discord VSCode Tracker",
"description": "This will track your time in VSCode. Add the bot to your server to check your progress!",
"version": "0.6.0",
"publisher": "JayNightmare",
"author": {
"name": "Jay",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.93.1"
},
"icon": "images/distrack.png",
"repository": {
"type": "git",
"url": "https://github.com/JayNightmare/DisTrack-VSCode-Extension"
},
"categories": [
"Other"
],
"bugs": {
"url": "https://github.com/JayNightmare/DisTrack-VSCode-Extension/issues"
},
"keywords": [
"discord",
"vscode",
"rich",
"presence",
"rich presence",
"rpc",
"time tracking",
"development",
"tracker",
"leaderboard",
"discord leaderboard"
],
"homepage": "https://github.com/JayNightmare/DisTrack-VSCode-Extension#readme",
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [],
"configuration": {
"title": "Dis.Track Settings",
"properties": {
"extension.updateDiscordId": {
"type": "string",
"default": "",
"description": "Enter your Discord User ID to link it with the extension."
},
"extension.enableRichPresence": {
"type": "boolean",
"default": true,
"description": "Enable or disable Rich Presence integration."
},
"extension.sessionTimerFormat": {
"type": "string",
"enum": [
"hh:mm:ss",
"mm:ss",
"hours"
],
"default": "hh:mm:ss",
"description": "Choose the format for the session timer display."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/discord-rpc": "^4.0.8",
"@types/mocha": "^10.0.9",
"@types/node": "20.x",
"@types/vscode": "^1.93.1",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.13.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^1.7.7",
"discord-rpc": "^4.0.1",
"dotenv": "^16.4.5",
"moment": "^2.30.1"
}
}