-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1 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
{
"name": "@techdivision/opencode-plugin-time-tracking",
"version": "1.3.2",
"description": "Automatic time tracking plugin for OpenCode. Tracks session duration and tool usage, writing entries to a CSV file compatible with Jira worklog sync incl. commands, skills and agents.",
"type": "module",
"main": "src/Plugin.ts",
"types": "src/Plugin.ts",
"files": [
"src/",
"skills/",
"agents/",
"commands/",
"tools/",
"scripts/",
"plugin.json"
],
"keywords": ["opencode", "plugin", "time-tracking", "jira", "tempo"],
"opencode": {
"plugin": true,
"category": "standard"
},
"repository": {
"type": "git",
"url": "https://github.com/techdivision/opencode-plugin-time-tracking.git"
},
"author": "TechDivision GmbH",
"license": "MIT",
"dependencies": {
"@opencode-ai/plugin": "1.2.15"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.0.3",
"typescript": "^5.9.3"
},
"peerDependencies": {
"bun": ">=1.0.0"
}
}