forked from wakatime/vscode-wakatime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
146 lines (146 loc) · 3.6 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "vscode-codeclimbers",
"displayName": "CodeClimbers",
"description": "Metrics, insights, and time tracking automatically generated from your programming activity.",
"version": "24.6.0",
"publisher": "CodeClimbers",
"author": {
"name": "CodeClimbers"
},
"categories": [
"Visualization",
"Education"
],
"keywords": [
"analytics",
"code",
"code time",
"codetime",
"flow",
"focus",
"metrics",
"productivity",
"slack",
"standup",
"time",
"timer",
"time tracker",
"time tracking",
"todo",
"tracker",
"tracking",
"worktime",
"wakatime",
"code climbers",
"codeclimbers"
],
"homepage": "https://codeclimbers.io/",
"bugs": {
"url": "https://github.com/CodeClimberIO/vscode-climbers/issues",
"email": "[email protected]"
},
"license": "BSD-3-Clause",
"icon": "images/codeclimbers-logo.png",
"galleryBanner": {
"color": "#AEC3D8",
"theme": "light"
},
"extensionKind": [
"workspace"
],
"activationEvents": [
"*"
],
"repository": {
"type": "git",
"url": "https://github.com/CodeClimberIO/vscode-climbers.git"
},
"engines": {
"vscode": "^1.59.0",
"sqlops": "*",
"azdata": "*"
},
"main": "./dist/extension",
"browser": "./dist/web/extension",
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"compile:dev": "tsc -p ./",
"watch": "webpack --mode none --watch",
"open-in-browser": "vscode-test-web --open-devtools --version sources --extensionDevelopmentPath=. .",
"test": "npm run compile:dev && node ./node_modules/vscode/bin/test"
},
"contributes": {
"commands": [
{
"command": "codeclimbers.apikey",
"title": "Code Climbers: Api Key"
},
{
"command": "codeclimbers.proxy",
"title": "Code Climbers: Proxy"
},
{
"command": "codeclimbers.debug",
"title": "Code Climbers: Debug"
},
{
"command": "codeclimbers.disable",
"title": "Code Climbers: Disable/Enable Extension"
},
{
"command": "codeclimbers.status_bar_enabled",
"title": "Code Climbers: Status Bar Enabled"
},
{
"command": "codeclimbers.status_bar_coding_activity",
"title": "Code Climbers: Status Bar Coding Activity"
},
{
"command": "codeclimbers.dashboard",
"title": "Code Climbers: Open Dashboard"
},
{
"command": "codeclimbers.config_file",
"title": "Code Climbers: Open Config File..."
},
{
"command": "codeclimbers.log_file",
"title": "Code Climbers: Open Log File..."
}
],
"configuration": {
"title": "Code Climbers",
"properties": {
"codeclimbers.apiKey": {
"type": "string",
"description": "Defaults to value from ~/.wakatime.cfg, unless running in browser.",
"scope": "application"
}
}
}
},
"devDependencies": {
"@types/adm-zip": "^0.4.34",
"@types/azdata": "^1.35.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@types/request": "^2.48.8",
"@types/vscode": "^1.59.0",
"@types/webpack": "^5.28.0",
"@types/which": "^2.0.1",
"@vscode/test-web": "^0.0.22",
"adm-zip": "0.5.9",
"azdata": "^1.0.0",
"del-cli": "^4.0.1",
"original-fs": "^1.1.0",
"prettier": "2.6.0",
"request": "2.88.2",
"ts-loader": "^9.2.8",
"tslib": "^2.3.1",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"which": "^2.0.2"
}
}