-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 3.01 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
{
"name": "klog-ui",
"displayName": "Klog UI",
"version": "1.0.2",
"private": true,
"description": "Track time with klog from the status bar.",
"categories": [
"Other",
"Visualization"
],
"keywords": [
"klog"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tscpp/vscode-klog-ui.git"
},
"publisher": "tscpp",
"type": "module",
"main": "./dist/extension.mjs",
"scripts": {
"publish": "vsce publish --no-dependencies",
"package": "vsce package --no-dependencies",
"vscode:prepublish": "npm run build",
"build": "tsdown",
"lint": "oxlint",
"format": "oxfmt"
},
"dependencies": {},
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^22",
"@types/vscode": "1.125.0",
"@vscode/vsce": "^3.9.2",
"oxfmt": "~0.59.0",
"oxlint": "^1.74.0",
"oxlint-tsgolint": "^0.25.0",
"tsdown": "~0.22.11",
"typescript": "^7.0.2"
},
"contributes": {
"commands": [
{
"command": "klog.openOutput",
"title": "Klog: Open Output Channel"
},
{
"command": "klog.refresh",
"title": "Klog: Refresh Active File",
"icon": "$(refresh)"
},
{
"command": "klog.openMenu",
"title": "Klog: Show Menu"
},
{
"command": "klog.selectFile",
"title": "Klog: Select Active File"
},
{
"command": "klog.openInTextEditor",
"title": "Klog: Edit Active File",
"icon": "$(go-to-file)"
},
{
"command": "klog.start",
"title": "Klog: Start New Record",
"icon": "$(play)"
},
{
"command": "klog.pause",
"title": "Klog: Pause Open Record",
"icon": "$(debug-pause)"
},
{
"command": "klog.resume",
"title": "Klog: Resume Open Record",
"icon": "$(debug-continue)"
},
{
"command": "klog.stop",
"title": "Klog: Stop Open Record",
"icon": "$(primitive-square)"
},
{
"command": "klog.switch",
"title": "Klog: Switch to New Record",
"icon": "$(arrow-swap)"
}
],
"configuration": {
"title": "Klog",
"properties": {
"klog.path": {
"type": "string",
"default": "klog",
"description": "Path to the klog executable."
},
"klog.round": {
"type": "string",
"enum": [
"none",
"5m",
"10m",
"12m",
"15m",
"20m",
"30m",
"60m"
],
"default": "none",
"description": "Round the times written by start, stop and switch to the nearest interval."
}
}
}
},
"activationEvents": [
"onStartupFinished"
],
"icon": "./media/icon.png",
"engines": {
"node": ">=22",
"vscode": "^1.125.0"
},
"allowScripts": {
"@vscode/vsce-sign": true,
"keytar": true
}
}