-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathpackage.json
More file actions
173 lines (173 loc) · 4.63 KB
/
package.json
File metadata and controls
173 lines (173 loc) · 4.63 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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "vscode-wakatime",
"displayName": "WakaTime",
"description": "Metrics, insights, and time tracking automatically generated from your programming activity.",
"version": "30.0.5",
"publisher": "WakaTime",
"author": {
"name": "WakaTime"
},
"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"
],
"homepage": "https://wakatime.com/",
"bugs": {
"url": "https://github.com/wakatime/vscode-wakatime/issues",
"email": "support@wakatime.com"
},
"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.89.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 --quality insiders --extensionDevelopmentPath=. .",
"publish:major": "vsce publish --allow-star-activation major && npm run publish:web && git push --tags",
"publish:minor": "vsce publish --allow-star-activation minor && npm run publish:web && git push --tags",
"publish:patch": "vsce publish --allow-star-activation patch && npm run publish:web && git push --tags",
"publish:web": "npx ovsx publish",
"test": "npm run compile:dev && node ./node_modules/vscode/bin/test"
},
"contributes": {
"commands": [
{
"command": "wakatime.apikey",
"title": "WakaTime: Api Key"
},
{
"command": "wakatime.apiurl",
"title": "WakaTime: Api Url"
},
{
"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..."
}
],
"configuration": {
"title": "WakaTime",
"properties": {
"wakatime.apiKey": {
"type": "string",
"description": "Defaults to value from ~/.wakatime.cfg, unless running in browser.",
"scope": "application"
},
"wakatime.apiUrl": {
"type": "string",
"description": "Defaults to https://api.wakatime.com/api/v1.",
"scope": "application"
},
"wakatime.align": {
"type": "string",
"enum": [
"left",
"right"
],
"default": "left",
"description": "Defines the alignment of the status bar item, requires restart of VS Code"
},
"wakatime.alignPriority": {
"type": "number",
"default": 1,
"description": "Defines priority of the status bar item. Higher values mean the item should be shown more to the left, requires restart of VS Code"
}
}
}
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/azdata": "^1.46.6",
"@types/mocha": "^10.0.10",
"@types/node": "^24.9.1",
"@types/request": "^2.48.13",
"@types/semver": "^7.7.1",
"@types/vscode": "^1.89.0",
"@types/webpack": "^5.28.5",
"@types/which": "^3.0.4",
"@vscode/test-web": "^0.0.74",
"adm-zip": "0.5.16",
"azdata": "^1.0.0",
"del-cli": "^7.0.0",
"original-fs": "^1.2.0",
"prettier": "3.6.2",
"request": "2.88.2",
"semver": "^7.7.3",
"ts-loader": "^9.5.4",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"which": "^5.0.0"
}
}