-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
94 lines (94 loc) · 2.37 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
{
"name": "wakatime",
"description": "The developer dashboard. Automatic time tracking and metrics for programmers.",
"version": "11.0.12",
"author": "WakaTime <[email protected]>",
"keywords": [
"productivity",
"time tracking",
"analytics",
"coding activity",
"project",
"goals",
"pomodoro",
"timer",
"time",
"stats",
"git"
],
"configSchema": {
"apikey": {
"title": "Api Key",
"description": "Your secret key from https://wakatime.com/settings.",
"type": "string",
"default": "",
"order": 1
},
"ignore": {
"title": "Exclude File Paths",
"description": "Exclude these file paths from logging; POSIX regex patterns",
"type": "array",
"default": [
"^/var/(?!www/).*",
"^/tmp/",
"^/private/",
"COMMIT_EDITMSG$",
"PULLREQ_EDITMSG$",
"MERGE_MSG$"
],
"items": {
"type": "string"
},
"order": 2
},
"showStatusBarIcon": {
"title": "Show WakaTime in Atom status bar",
"description": "Add an icon to Atom's status bar with WakaTime info. Hovering over the icon shows current WakaTime status or error message.",
"type": "boolean",
"default": true,
"order": 3
},
"debug": {
"title": "Debug",
"description": "Logs verbose debug messages to the Atom developer console and ~/.wakatime/wakatime.log file.",
"type": "boolean",
"default": false,
"order": 4
},
"disableSSLCertVerify": {
"title": "Disable SSL Cert Verify",
"description": "Disables verifying SSL Certificates for HTTPS requests. By default, SSL verification is enabled.",
"type": "boolean",
"default": false,
"order": 5
}
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"dependencies": {
"decompress": "^4.2.1",
"del": "^6.0.0",
"path-exists": "^4.0.0",
"request": "2.88.2"
},
"devDependencies": {
"@types/atom": "^1.40.6",
"@types/decompress": "^4.2.3",
"@types/node": "^14.14.20",
"@types/request": "^2.48.5"
},
"activationHooks": [
"core:loaded-shell-environment"
],
"engines": {
"atom": ">0.50.0"
},
"license": "BSD-3-Clause",
"main": "./lib/wakatime",
"repository": "https://github.com/wakatime/atom-wakatime"
}