This repository was archived by the owner on Jun 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
158 lines (158 loc) · 4.11 KB
/
Copy pathpackage.json
File metadata and controls
158 lines (158 loc) · 4.11 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
{
"name": "edit-timer",
"displayName": "edit-timer",
"description": "Measure work time by file.",
"version": "0.1.0",
"publisher": "Keito654",
"repository": {
"type": "git",
"url": "https://github.com/Keito654/edit-timer"
},
"keywords": [
"time",
"tracking",
"productivity",
"timer",
"analytics",
"timesheet",
"timekeeping"
],
"categories": [
"Other"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#764ba2",
"theme": "dark"
},
"bugs": {
"url": "https://github.com/Keito654/edit-timer/issues"
},
"homepage": "https://github.com/Keito654/edit-timer#readme",
"engines": {
"vscode": "^1.103.0"
},
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "editTimer.toggle",
"title": "Toggle Timer",
"icon": "$(watch)"
},
{
"command": "editTimer.pause",
"title": "Pause Edit Timer",
"icon": "$(debug-pause)"
},
{
"command": "editTimer.resume",
"title": "Resume Edit Timer",
"icon": "$(debug-continue)"
},
{
"command": "editTimer.refreshView",
"title": "Refresh Edit Timer",
"icon": "$(refresh)"
},
{
"command": "editTimer.openPanel",
"title": "Open Edit Timer",
"icon": "$(graph)"
},
{
"command": "editTimer.generateTimeCard",
"title": "Generate Time Card",
"icon": "$(preview)"
},
{
"command": "editTimer.showFloatingTimer",
"title": "Show Floating Timer",
"icon": "$(symbol-method)"
},
{
"command": "editTimer.toggleExclude",
"title": "Toggle Exclude",
"icon": "$(eye-closed)"
},
{
"command": "editTimer.reset",
"title": "Edit Timerr: Reset All Time Data",
"icon": "$(clear-all)"
}
],
"views": {
"explorer": [
{
"id": "timeTrackerView",
"name": "Edit Timer",
"icon": "$(watch)",
"contextualTitle": "Edit Timer"
}
]
},
"menus": {
"view/title": [
{
"command": "editTimer.refreshView",
"when": "view == timeTrackerView",
"group": "navigation"
},
{
"command": "editTimer.pause",
"when": "view == timeTrackerView && editTimer.isTracking",
"group": "navigation@1"
},
{
"command": "editTimer.resume",
"when": "view == timeTrackerView && !editTimer.isTracking",
"group": "navigation@1"
},
{
"command": "editTimer.generateTimeCard",
"when": "view == timeTrackerView",
"group": "navigation"
},
{
"command": "editTimer.showFloatingTimer",
"when": "view == timeTrackerView",
"group": "navigation"
},
{
"command": "editTimer.reset",
"when": "view == timeTrackerView",
"group": "navigation"
}
]
}
},
"scripts": {
"build": "pnpm run compile && pnpm exec vsce package",
"vscode:prepublish": "pnpm run package",
"compile": "pnpm run check-types && pnpm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "pnpm run check-types && pnpm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"format": "prettier src --write"
},
"packageManager": "pnpm@10.15.0",
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/node": "22.x",
"@types/vscode": "^1.103.0",
"esbuild": "^0.25.9",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0"
}
}