jira-daily-report 0.1.98

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/package.json ADDED
@@ -0,0 +1,186 @@
1
+ {
2
+ "name": "jira-daily-report",
3
+ "displayName": "jira-daily-report",
4
+ "description": "Generate Jira daily standup reports - VS Code extension and CLI tool",
5
+ "version": "0.1.98",
6
+ "publisher": "thuanvo",
7
+ "author": {
8
+ "name": "Thuan Vo",
9
+ "email": "voxuanthuan@gmail.com"
10
+ },
11
+ "license": "MIT",
12
+ "keywords": [
13
+ "jira",
14
+ "daily-report",
15
+ "standup",
16
+ "tempo",
17
+ "productivity",
18
+ "cli",
19
+ "vscode-extension"
20
+ ],
21
+ "homepage": "https://github.com/voxuanthuan/daily-report#readme",
22
+ "bugs": {
23
+ "url": "https://github.com/voxuanthuan/daily-report/issues"
24
+ },
25
+ "icon": "images/icon.png",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/voxuanthuan/daily-report.git"
29
+ },
30
+ "engines": {
31
+ "vscode": "^1.80.0",
32
+ "node": ">=16.0.0"
33
+ },
34
+ "categories": [
35
+ "Other"
36
+ ],
37
+ "activationEvents": [],
38
+ "main": "./dist/extension.js",
39
+ "bin": {
40
+ "jira-report": "./dist/cli/index.js"
41
+ },
42
+ "contributes": {
43
+ "commands": [
44
+ {
45
+ "command": "jiraDailyReport.generate",
46
+ "title": "Generate Jira Daily Report"
47
+ },
48
+ {
49
+ "command": "jiraDailyReport.open",
50
+ "title": "Open Ticket"
51
+ },
52
+ {
53
+ "command": "jiraDailyReport.quickAction",
54
+ "title": "Jira Quick Action"
55
+ },
56
+ {
57
+ "command": "jiraDailyReport.myTickets",
58
+ "title": "My Jira Tickets"
59
+ },
60
+ {
61
+ "command": "jiraDailyReport.quickActionHelp",
62
+ "title": "Jira Quick Action Help"
63
+ },
64
+ {
65
+ "command": "jiraDailyReport.clearCache",
66
+ "title": "Clear Jira Daily Report Cache"
67
+ }
68
+ ],
69
+ "keybindings": [
70
+ {
71
+ "command": "jiraDailyReport.quickAction",
72
+ "key": "ctrl+shift+j",
73
+ "mac": "cmd+shift+j",
74
+ "when": "editorTextFocus"
75
+ },
76
+ {
77
+ "command": "jiraDailyReport.myTickets",
78
+ "key": "ctrl+shift+t",
79
+ "mac": "cmd+shift+t",
80
+ "when": "editorTextFocus"
81
+ },
82
+ {
83
+ "command": "jiraDailyReport.generate",
84
+ "key": "ctrl+shift+r",
85
+ "mac": "cmd+shift+r",
86
+ "when": "editorTextFocus"
87
+ },
88
+ {
89
+ "command": "jiraDailyReport.open",
90
+ "key": "ctrl+shift+o",
91
+ "mac": "cmd+shift+o",
92
+ "when": "editorTextFocus"
93
+ }
94
+ ],
95
+ "configuration": {
96
+ "title": "Jira Daily Report",
97
+ "properties": {
98
+ "grappleDailyReport.jiraServer": {
99
+ "type": "string",
100
+ "default": "https://grapplefinance.atlassian.net/",
101
+ "description": "Jira server URL (e.g., https://yourcompany.atlassian.net/)"
102
+ },
103
+ "grappleDailyReport.username": {
104
+ "type": "string",
105
+ "default": "",
106
+ "description": "Your Jira username (email) as thuan@wearebloom.com"
107
+ },
108
+ "grappleDailyReport.apiToken": {
109
+ "type": "string",
110
+ "default": "",
111
+ "description": "Your Jira API token (generate from Atlassian account)"
112
+ },
113
+ "grappleDailyReport.jiraTempoToken": {
114
+ "type": "string",
115
+ "default": "",
116
+ "description": "Your Jira Tempo API token (Tempo > Setting > Data Access > API Intergration)"
117
+ },
118
+ "grappleDailyReport.whoAmI": {
119
+ "type": "string",
120
+ "default": "Developer",
121
+ "description": "We support QA/QC now 🥹, pass: Developer/QC"
122
+ },
123
+ "grappleDailyReport.autoClipboard": {
124
+ "type": "boolean",
125
+ "default": true,
126
+ "description": "Automatically copy the generated report to clipboard"
127
+ },
128
+ "grappleDailyReport.enableTimesheetIntegration": {
129
+ "type": "boolean",
130
+ "default": true,
131
+ "description": "Enable timesheet log parsing and integration features"
132
+ },
133
+ "grappleDailyReport.timesheetDateFormat": {
134
+ "type": "string",
135
+ "default": "YYYY-MM-DD",
136
+ "description": "Date format for timesheet entries (e.g., YYYY-MM-DD, MM/DD/YYYY)"
137
+ }
138
+ }
139
+ }
140
+ },
141
+ "files": [
142
+ "dist/",
143
+ "images/",
144
+ "CLI.md",
145
+ "README.md",
146
+ "LICENSE"
147
+ ],
148
+ "scripts": {
149
+ "vscode:prepublish": "npm run package",
150
+ "prepublishOnly": "npm run package",
151
+ "compile": "npm run check-types && npm run lint && node esbuild.js",
152
+ "watch": "npm-run-all -p watch:*",
153
+ "watch:esbuild": "node esbuild.js --watch",
154
+ "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
155
+ "package": "npm run check-types && npm run lint && node esbuild.js --production",
156
+ "compile-tests": "tsc -p . --outDir out",
157
+ "watch-tests": "tsc -p . -w --outDir out",
158
+ "pretest": "npm run compile-tests && npm run compile && npm run lint",
159
+ "check-types": "tsc --noEmit",
160
+ "lint": "eslint src",
161
+ "test": "vscode-test"
162
+ },
163
+ "devDependencies": {
164
+ "@types/mocha": "^10.0.10",
165
+ "@types/moment": "^2.13.0",
166
+ "@types/node": "20.x",
167
+ "@types/vscode": "^1.80.0",
168
+ "@typescript-eslint/eslint-plugin": "^8.25.0",
169
+ "@typescript-eslint/parser": "^8.25.0",
170
+ "@vscode/test-cli": "^0.0.10",
171
+ "@vscode/test-electron": "^2.4.1",
172
+ "esbuild": "^0.25.0",
173
+ "eslint": "^9.21.0",
174
+ "npm-run-all": "^4.1.5",
175
+ "typescript": "^5.7.3"
176
+ },
177
+ "dependencies": {
178
+ "axios": "^1.8.1",
179
+ "commander": "^12.1.0",
180
+ "moment": "^2.30.1",
181
+ "moment-timezone": "^0.5.48"
182
+ },
183
+ "optionalDependencies": {
184
+ "clipboardy": "^4.0.0"
185
+ }
186
+ }