-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
111 lines (111 loc) · 4.17 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
{
"name": "timetracker",
"publisher": "Blade",
"icon": "res/icon.png",
"displayName": "Time Tracker",
"description": "Work hours time tracker. Count you work time in background, store it within project's files in the Git repo.",
"version": "1.1.2",
"engines": {
"vscode": "^1.48.0"
},
"repository": {
"type": "git",
"url": "https://github.com/alexblade/vscode-time-tracker.git"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "dist/tracker.js",
"contributes": {
"commands": [
{
"command": "timetracker.start",
"title": "Time Tracker: Start"
},
{
"command": "timetracker.stop",
"title": "Time Tracker: Stop"
},
{
"command": "timetracker.pause",
"title": "Time Tracker: Pause"
},
{
"command": "timetracker.recompute",
"title": "Time Tracker: Recompute total time"
}
],
"configuration": {
"title": "Time Tracker",
"properties": {
"timetracker.autostart.autoStartTimeTracking": {
"type": "boolean",
"default": false,
"description": "Auto start time tracking if '.timetracker' file already exists in the opened folder"
},
"timetracker.autostart.autoCreateTimeTrackingFile": {
"type": "boolean",
"default": false,
"description": "Auto create '.timetracker' file if Auto Start is active and the file does not exist"
},
"timetracker.autostart.askAboutAutoStart": {
"type": "boolean",
"default": false,
"description": "Ask user about auto start time tracking when auto start or auto create is active"
},
"timetracker.pauseAfter": {
"type": "number",
"default": 120,
"description": "Time in seconds before the tracker will be paused. If set to 0 (zero) then auto pause will be disabled"
},
"timetracker.dotTimeTrackerIndent": {
"type": [
"string",
"null",
"integer"
],
"default": null,
"description": "Indentation of '.timetracker' file. If set to a number, it indicates the number of space characters to use as indentation. If set to a string, the string is used as indentation."
},
"timetracker.useCompactStatusPanel": {
"type": "boolean",
"default": false,
"description": "Use compact mode of the status bar."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"bundle:dev": "webpack --env.NODE_ENV=local --env.mode=development --mode=development --config-name=vscode-time-tracker",
"bundle:prod": "webpack --env.NODE_ENV=local --env.mode=production --mode=production --config-name=vscode-time-tracker",
"vsix": "vsce package"
},
"devDependencies": {
"@types/vscode": "^1.48.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/moment": "2.13.0",
"@types/moment-duration-format": "2.2.0",
"@types/node": "^14.0.27",
"eslint": "^7.6.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"glob": "^7.1.6",
"mocha": "^8.0.1",
"typescript": "^3.8.3",
"vscode-test": "^1.4.0",
"moment": "^2.27.0",
"moment-duration-format": "^2.3.2",
"ts-loader": "^8.0.3",
"webpack": "4.44.1",
"webpack-cli": "3.3.12"
}
}