jira-daily-report 0.1.116 → 0.1.118

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.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "jira-daily-report",
3
3
  "displayName": "jira-daily-report",
4
4
  "description": "Generate Jira daily standup reports - VS Code extension and CLI tool",
5
- "version": "0.1.116",
5
+ "version": "0.1.118",
6
6
  "publisher": "thuanvo",
7
7
  "author": {
8
8
  "name": "Thuan Vo",
@@ -146,7 +146,23 @@
146
146
  "README-vscode.md",
147
147
  "LICENSE"
148
148
  ],
149
+ "scripts": {
150
+ "vscode:prepublish": "npm run package",
151
+ "prepublishOnly": "npm run package",
152
+ "compile": "npm run check-types && npm run lint && node esbuild.js",
153
+ "watch": "npm-run-all -p watch:*",
154
+ "watch:esbuild": "node esbuild.js --watch",
155
+ "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
156
+ "package": "npm run check-types && npm run lint && node esbuild.js --production",
157
+ "compile-tests": "tsc -p . --outDir out",
158
+ "watch-tests": "tsc -p . -w --outDir out",
159
+ "pretest": "npm run compile-tests && npm run compile && npm run lint",
160
+ "check-types": "tsc --noEmit",
161
+ "lint": "eslint src",
162
+ "test": "vscode-test"
163
+ },
149
164
  "devDependencies": {
165
+ "@types/blessed": "^0.1.19",
150
166
  "@types/mocha": "^10.0.10",
151
167
  "@types/moment": "^2.13.0",
152
168
  "@types/node": "20.x",
@@ -162,6 +178,8 @@
162
178
  },
163
179
  "dependencies": {
164
180
  "axios": "^1.8.1",
181
+ "blessed": "^0.1.81",
182
+ "blessed-contrib": "^4.11.0",
165
183
  "commander": "^12.1.0",
166
184
  "moment": "^2.30.1",
167
185
  "moment-timezone": "^0.5.48",
@@ -169,19 +187,5 @@
169
187
  },
170
188
  "optionalDependencies": {
171
189
  "clipboardy": "^4.0.0"
172
- },
173
- "scripts": {
174
- "vscode:prepublish": "npm run package",
175
- "compile": "npm run check-types && npm run lint && node esbuild.js",
176
- "watch": "npm-run-all -p watch:*",
177
- "watch:esbuild": "node esbuild.js --watch",
178
- "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
179
- "package": "npm run check-types && npm run lint && node esbuild.js --production",
180
- "compile-tests": "tsc -p . --outDir out",
181
- "watch-tests": "tsc -p . -w --outDir out",
182
- "pretest": "npm run compile-tests && npm run compile && npm run lint",
183
- "check-types": "tsc --noEmit",
184
- "lint": "eslint src",
185
- "test": "vscode-test"
186
190
  }
187
- }
191
+ }