-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (45 loc) · 1.11 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
{
"name": "devtime",
"displayName": "DevTime",
"description": "DevTime is a Visual Studio Code extension that helps developers track the time spent working on projects, providing insights into productivity and energy consumption.",
"version": "0.0.1",
"publisher": "edilsonsh",
"engines": {
"vscode": "^1.99.0"
},
"activationEvents": [
"onStartupFinished",
"onCommand:devtime.startTracking",
"onCommand:devtime.stopTracking"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "devtime.startTracking",
"title": "Start Tracking"
},
{
"command": "devtime.stopTracking",
"title": "Stop Tracking"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.99.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"eslint": "^9.23.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/EdilsonFilho/devtime.git"
}
}