-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathpackage.json
156 lines (156 loc) · 3.79 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
147
148
149
150
151
152
153
154
155
156
{
"name": "vscode-wakatime",
"displayName": "WakaTime",
"description": "Metrics, insights, and time tracking automatically generated from your programming activity.",
"version": "25.0.0",
"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": "[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.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 --quality insiders --extensionDevelopmentPath=. .",
"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"
}
}
}
},
"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/semver": "^7.5.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",
"semver": "^7.6.3",
"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"
}
}