forked from wakatime/vscode-wakatime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.83 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "vscode-wakatime",
"displayName": "WakaTime",
"description": "Metrics, insights, and time tracking automatically generated from your programming activity.",
"version": "5.0.1",
"publisher": "WakaTime",
"author": {
"name": "WakaTime"
},
"categories": [
"Other"
],
"keywords": [
"code",
"productivity",
"time",
"tracking",
"tracker"
],
"homepage": "https://wakatime.com/",
"bugs": {
"url": "https://github.com/wakatime/vscode-wakatime/issues",
"email": "[email protected]"
},
"license": "BSD-3-Clause",
"icon": "images/wakatime-logo.png",
"galleryBanner": {
"color": "#AEC3D8",
"theme": "light"
},
"extensionKind": [
"workspace"
],
"activationEvents": [
"*"
],
"repository": {
"type": "git",
"url": "https://github.com/wakatime/vscode-wakatime.git"
},
"engines": {
"vscode": "^1.52.0",
"sqlops": "*",
"azdata": "*"
},
"main": "./dist/extension",
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"compile:dev": "tsc -p ./",
"watch": "webpack --mode none --watch",
"test": "npm run compile:dev && node ./node_modules/vscode/bin/test"
},
"contributes": {
"commands": [
{
"command": "wakatime.apikey",
"title": "WakaTime: Api Key"
},
{
"command": "wakatime.proxy",
"title": "WakaTime: Proxy"
},
{
"command": "wakatime.debug",
"title": "WakaTime: Debug"
},
{
"command": "wakatime.disable",
"title": "WakaTime: Disable/Enable Extension"
},
{
"command": "wakatime.status_bar_enabled",
"title": "WakaTime: Status Bar Enabled"
},
{
"command": "wakatime.status_bar_coding_activity",
"title": "WakaTime: Status Bar Coding Activity"
},
{
"command": "wakatime.dashboard",
"title": "WakaTime: Open Dashboard"
},
{
"command": "wakatime.config_file",
"title": "WakaTime: Open Config File..."
},
{
"command": "wakatime.log_file",
"title": "WakaTime: Open Log File..."
}
]
},
"devDependencies": {
"@types/adm-zip": "^0.4.33",
"@types/azdata": "^1.25.0",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.17",
"@types/request": "^2.48.5",
"@types/rimraf": "^3.0.0",
"@types/webpack": "^4.41.25",
"@types/vscode": "^1.52.0",
"adm-zip": "0.5.1",
"azdata": "^1.0.0",
"del-cli": "^3.0.1",
"original-fs": "^1.1.0",
"prettier": "2.2.1",
"request": "2.88.2",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.13",
"tslib": "^2.0.3",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
},
"dependencies": {
"@types/which": "^1.3.2",
"which": "^2.0.2"
}
}