browser-extension-manager 1.0.13 → 1.1.0

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.
Files changed (242) hide show
  1. package/CHANGELOG.md +43 -0
  2. package/CLAUDE.md +672 -0
  3. package/TODO.md +3 -0
  4. package/dist/assets/css/browser-extension-manager.scss +18 -0
  5. package/dist/assets/css/components/content/index.scss +5 -0
  6. package/dist/assets/css/components/options/index.scss +5 -0
  7. package/dist/assets/css/components/pages/index.scss +5 -0
  8. package/dist/assets/css/components/popup/index.scss +5 -0
  9. package/dist/assets/css/core/_animations.scss +64 -0
  10. package/dist/assets/css/core/_initialize.scss +23 -0
  11. package/dist/assets/css/core/_utilities.scss +80 -0
  12. package/dist/assets/themes/_template/_theme.js +5 -0
  13. package/dist/assets/themes/_template/_theme.scss +5 -0
  14. package/dist/assets/themes/bootstrap/_theme.js +16 -0
  15. package/dist/assets/themes/bootstrap/_theme.scss +232 -0
  16. package/dist/assets/themes/bootstrap/js/index.esm.js +19 -0
  17. package/dist/assets/themes/bootstrap/js/index.umd.js +34 -0
  18. package/dist/assets/themes/bootstrap/js/src/alert.js +87 -0
  19. package/dist/assets/themes/bootstrap/js/src/base-component.js +86 -0
  20. package/dist/assets/themes/bootstrap/js/src/button.js +72 -0
  21. package/dist/assets/themes/bootstrap/js/src/carousel.js +474 -0
  22. package/dist/assets/themes/bootstrap/js/src/collapse.js +297 -0
  23. package/dist/assets/themes/bootstrap/js/src/dom/data.js +55 -0
  24. package/dist/assets/themes/bootstrap/js/src/dom/event-handler.js +317 -0
  25. package/dist/assets/themes/bootstrap/js/src/dom/manipulator.js +71 -0
  26. package/dist/assets/themes/bootstrap/js/src/dom/selector-engine.js +126 -0
  27. package/dist/assets/themes/bootstrap/js/src/dropdown.js +458 -0
  28. package/dist/assets/themes/bootstrap/js/src/modal.js +378 -0
  29. package/dist/assets/themes/bootstrap/js/src/offcanvas.js +282 -0
  30. package/dist/assets/themes/bootstrap/js/src/popover.js +97 -0
  31. package/dist/assets/themes/bootstrap/js/src/scrollspy.js +296 -0
  32. package/dist/assets/themes/bootstrap/js/src/tab.js +315 -0
  33. package/dist/assets/themes/bootstrap/js/src/toast.js +224 -0
  34. package/dist/assets/themes/bootstrap/js/src/tooltip.js +632 -0
  35. package/dist/assets/themes/bootstrap/js/src/util/backdrop.js +151 -0
  36. package/dist/assets/themes/bootstrap/js/src/util/component-functions.js +35 -0
  37. package/dist/assets/themes/bootstrap/js/src/util/config.js +65 -0
  38. package/dist/assets/themes/bootstrap/js/src/util/focustrap.js +115 -0
  39. package/dist/assets/themes/bootstrap/js/src/util/index.js +306 -0
  40. package/dist/assets/themes/bootstrap/js/src/util/sanitizer.js +117 -0
  41. package/dist/assets/themes/bootstrap/js/src/util/scrollbar.js +114 -0
  42. package/dist/assets/themes/bootstrap/js/src/util/swipe.js +146 -0
  43. package/dist/assets/themes/bootstrap/js/src/util/template-factory.js +160 -0
  44. package/dist/assets/themes/bootstrap/scss/_accordion.scss +153 -0
  45. package/dist/assets/themes/bootstrap/scss/_alert.scss +68 -0
  46. package/dist/assets/themes/bootstrap/scss/_badge.scss +38 -0
  47. package/dist/assets/themes/bootstrap/scss/_breadcrumb.scss +40 -0
  48. package/dist/assets/themes/bootstrap/scss/_button-group.scss +147 -0
  49. package/dist/assets/themes/bootstrap/scss/_buttons.scss +216 -0
  50. package/dist/assets/themes/bootstrap/scss/_card.scss +238 -0
  51. package/dist/assets/themes/bootstrap/scss/_carousel.scss +226 -0
  52. package/dist/assets/themes/bootstrap/scss/_close.scss +66 -0
  53. package/dist/assets/themes/bootstrap/scss/_containers.scss +41 -0
  54. package/dist/assets/themes/bootstrap/scss/_dropdown.scss +250 -0
  55. package/dist/assets/themes/bootstrap/scss/_forms.scss +9 -0
  56. package/dist/assets/themes/bootstrap/scss/_functions.scss +302 -0
  57. package/dist/assets/themes/bootstrap/scss/_grid.scss +39 -0
  58. package/dist/assets/themes/bootstrap/scss/_helpers.scss +12 -0
  59. package/dist/assets/themes/bootstrap/scss/_images.scss +42 -0
  60. package/dist/assets/themes/bootstrap/scss/_list-group.scss +199 -0
  61. package/dist/assets/themes/bootstrap/scss/_maps.scss +174 -0
  62. package/dist/assets/themes/bootstrap/scss/_mixins.scss +42 -0
  63. package/dist/assets/themes/bootstrap/scss/_modal.scss +240 -0
  64. package/dist/assets/themes/bootstrap/scss/_nav.scss +197 -0
  65. package/dist/assets/themes/bootstrap/scss/_navbar.scss +289 -0
  66. package/dist/assets/themes/bootstrap/scss/_offcanvas.scss +147 -0
  67. package/dist/assets/themes/bootstrap/scss/_pagination.scss +109 -0
  68. package/dist/assets/themes/bootstrap/scss/_placeholders.scss +51 -0
  69. package/dist/assets/themes/bootstrap/scss/_popover.scss +196 -0
  70. package/dist/assets/themes/bootstrap/scss/_progress.scss +68 -0
  71. package/dist/assets/themes/bootstrap/scss/_reboot.scss +611 -0
  72. package/dist/assets/themes/bootstrap/scss/_root.scss +187 -0
  73. package/dist/assets/themes/bootstrap/scss/_spinners.scss +85 -0
  74. package/dist/assets/themes/bootstrap/scss/_tables.scss +171 -0
  75. package/dist/assets/themes/bootstrap/scss/_toasts.scss +73 -0
  76. package/dist/assets/themes/bootstrap/scss/_tooltip.scss +119 -0
  77. package/dist/assets/themes/bootstrap/scss/_transitions.scss +27 -0
  78. package/dist/assets/themes/bootstrap/scss/_type.scss +106 -0
  79. package/dist/assets/themes/bootstrap/scss/_utilities.scss +806 -0
  80. package/dist/assets/themes/bootstrap/scss/_variables-dark.scss +102 -0
  81. package/dist/assets/themes/bootstrap/scss/_variables.scss +1753 -0
  82. package/dist/assets/themes/bootstrap/scss/bootstrap-grid.scss +62 -0
  83. package/dist/assets/themes/bootstrap/scss/bootstrap-reboot.scss +10 -0
  84. package/dist/assets/themes/bootstrap/scss/bootstrap-utilities.scss +19 -0
  85. package/dist/assets/themes/bootstrap/scss/bootstrap.scss +52 -0
  86. package/dist/assets/themes/bootstrap/scss/forms/_floating-labels.scss +97 -0
  87. package/dist/assets/themes/bootstrap/scss/forms/_form-check.scss +189 -0
  88. package/dist/assets/themes/bootstrap/scss/forms/_form-control.scss +214 -0
  89. package/dist/assets/themes/bootstrap/scss/forms/_form-range.scss +91 -0
  90. package/dist/assets/themes/bootstrap/scss/forms/_form-select.scss +80 -0
  91. package/dist/assets/themes/bootstrap/scss/forms/_form-text.scss +11 -0
  92. package/dist/assets/themes/bootstrap/scss/forms/_input-group.scss +132 -0
  93. package/dist/assets/themes/bootstrap/scss/forms/_labels.scss +36 -0
  94. package/dist/assets/themes/bootstrap/scss/forms/_validation.scss +12 -0
  95. package/dist/assets/themes/bootstrap/scss/helpers/_clearfix.scss +3 -0
  96. package/dist/assets/themes/bootstrap/scss/helpers/_color-bg.scss +7 -0
  97. package/dist/assets/themes/bootstrap/scss/helpers/_colored-links.scss +30 -0
  98. package/dist/assets/themes/bootstrap/scss/helpers/_focus-ring.scss +5 -0
  99. package/dist/assets/themes/bootstrap/scss/helpers/_icon-link.scss +25 -0
  100. package/dist/assets/themes/bootstrap/scss/helpers/_position.scss +36 -0
  101. package/dist/assets/themes/bootstrap/scss/helpers/_ratio.scss +26 -0
  102. package/dist/assets/themes/bootstrap/scss/helpers/_stacks.scss +15 -0
  103. package/dist/assets/themes/bootstrap/scss/helpers/_stretched-link.scss +15 -0
  104. package/dist/assets/themes/bootstrap/scss/helpers/_text-truncation.scss +7 -0
  105. package/dist/assets/themes/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
  106. package/dist/assets/themes/bootstrap/scss/helpers/_vr.scss +8 -0
  107. package/dist/assets/themes/bootstrap/scss/mixins/_alert.scss +18 -0
  108. package/dist/assets/themes/bootstrap/scss/mixins/_backdrop.scss +14 -0
  109. package/dist/assets/themes/bootstrap/scss/mixins/_banner.scss +7 -0
  110. package/dist/assets/themes/bootstrap/scss/mixins/_border-radius.scss +78 -0
  111. package/dist/assets/themes/bootstrap/scss/mixins/_box-shadow.scss +18 -0
  112. package/dist/assets/themes/bootstrap/scss/mixins/_breakpoints.scss +127 -0
  113. package/dist/assets/themes/bootstrap/scss/mixins/_buttons.scss +70 -0
  114. package/dist/assets/themes/bootstrap/scss/mixins/_caret.scss +69 -0
  115. package/dist/assets/themes/bootstrap/scss/mixins/_clearfix.scss +9 -0
  116. package/dist/assets/themes/bootstrap/scss/mixins/_color-mode.scss +21 -0
  117. package/dist/assets/themes/bootstrap/scss/mixins/_color-scheme.scss +7 -0
  118. package/dist/assets/themes/bootstrap/scss/mixins/_container.scss +11 -0
  119. package/dist/assets/themes/bootstrap/scss/mixins/_deprecate.scss +10 -0
  120. package/dist/assets/themes/bootstrap/scss/mixins/_forms.scss +163 -0
  121. package/dist/assets/themes/bootstrap/scss/mixins/_gradients.scss +47 -0
  122. package/dist/assets/themes/bootstrap/scss/mixins/_grid.scss +151 -0
  123. package/dist/assets/themes/bootstrap/scss/mixins/_image.scss +16 -0
  124. package/dist/assets/themes/bootstrap/scss/mixins/_list-group.scss +26 -0
  125. package/dist/assets/themes/bootstrap/scss/mixins/_lists.scss +7 -0
  126. package/dist/assets/themes/bootstrap/scss/mixins/_pagination.scss +10 -0
  127. package/dist/assets/themes/bootstrap/scss/mixins/_reset-text.scss +17 -0
  128. package/dist/assets/themes/bootstrap/scss/mixins/_resize.scss +6 -0
  129. package/dist/assets/themes/bootstrap/scss/mixins/_table-variants.scss +24 -0
  130. package/dist/assets/themes/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  131. package/dist/assets/themes/bootstrap/scss/mixins/_transition.scss +26 -0
  132. package/dist/assets/themes/bootstrap/scss/mixins/_utilities.scss +97 -0
  133. package/dist/assets/themes/bootstrap/scss/mixins/_visually-hidden.scss +38 -0
  134. package/dist/assets/themes/bootstrap/scss/tests/jasmine.js +16 -0
  135. package/dist/assets/themes/bootstrap/scss/tests/mixins/_auto-import-of-variables-dark.test.scss +7 -0
  136. package/dist/assets/themes/bootstrap/scss/tests/mixins/_color-modes.test.scss +69 -0
  137. package/dist/assets/themes/bootstrap/scss/tests/mixins/_media-query-color-mode-full.test.scss +8 -0
  138. package/dist/assets/themes/bootstrap/scss/tests/mixins/_utilities.test.scss +393 -0
  139. package/dist/assets/themes/bootstrap/scss/tests/sass-true/register.js +14 -0
  140. package/dist/assets/themes/bootstrap/scss/tests/sass-true/runner.js +17 -0
  141. package/dist/assets/themes/bootstrap/scss/tests/utilities/_api.test.scss +75 -0
  142. package/dist/assets/themes/bootstrap/scss/utilities/_api.scss +47 -0
  143. package/dist/assets/themes/bootstrap/scss/vendor/_rfs.scss +348 -0
  144. package/dist/assets/themes/classy/README.md +75 -0
  145. package/dist/assets/themes/classy/_config.scss +185 -0
  146. package/dist/assets/themes/classy/_theme.js +29 -0
  147. package/dist/assets/themes/classy/_theme.scss +34 -0
  148. package/dist/assets/themes/classy/css/base/_animations.scss +27 -0
  149. package/dist/assets/themes/classy/css/base/_backgrounds.scss +191 -0
  150. package/dist/assets/themes/classy/css/base/_borders.scss +65 -0
  151. package/dist/assets/themes/classy/css/base/_root.scss +58 -0
  152. package/dist/assets/themes/classy/css/base/_soft-colors.scss +92 -0
  153. package/dist/assets/themes/classy/css/base/_spacing.scss +64 -0
  154. package/dist/assets/themes/classy/css/base/_typography.scss +179 -0
  155. package/dist/assets/themes/classy/css/base/_utilities.scss +77 -0
  156. package/dist/assets/themes/classy/css/components/_accordion.scss +33 -0
  157. package/dist/assets/themes/classy/css/components/_avatars.scss +32 -0
  158. package/dist/assets/themes/classy/css/components/_badges.scss +25 -0
  159. package/dist/assets/themes/classy/css/components/_buttons.scss +397 -0
  160. package/dist/assets/themes/classy/css/components/_cards.scss +33 -0
  161. package/dist/assets/themes/classy/css/components/_carousel.scss +41 -0
  162. package/dist/assets/themes/classy/css/components/_forms.scss +115 -0
  163. package/dist/assets/themes/classy/css/components/_links.scss +19 -0
  164. package/dist/assets/themes/classy/css/components/_logo-scroll.scss +57 -0
  165. package/dist/assets/themes/classy/css/components/_spinners.scss +19 -0
  166. package/dist/assets/themes/classy/css/components/_text.scss +41 -0
  167. package/dist/assets/themes/classy/css/layout/_blog.scss +42 -0
  168. package/dist/assets/themes/classy/css/layout/_general.scss +139 -0
  169. package/dist/assets/themes/classy/css/layout/_navigation.scss +576 -0
  170. package/dist/assets/themes/classy/css/layout/_team.scss +18 -0
  171. package/dist/assets/themes/classy/js/logo-scroll.js +83 -0
  172. package/dist/assets/themes/classy/js/navbar-scroll.js +65 -0
  173. package/dist/background.js +236 -260
  174. package/dist/build.js +93 -4
  175. package/dist/commands/setup.js +0 -268
  176. package/dist/config/manifest.json +11 -3
  177. package/dist/config/page-template.html +21 -0
  178. package/dist/defaults/.nvmrc +1 -1
  179. package/dist/defaults/CLAUDE.md +8 -0
  180. package/dist/defaults/config/browser-extension-manager.json +37 -0
  181. package/dist/defaults/src/assets/css/components/content/index.scss +11 -0
  182. package/dist/defaults/src/assets/css/components/options/index.scss +14 -0
  183. package/dist/defaults/src/assets/css/components/pages/index.scss +10 -0
  184. package/dist/defaults/src/assets/css/components/popup/index.scss +10 -0
  185. package/dist/defaults/src/assets/css/components/sidepanel/index.scss +6 -0
  186. package/dist/defaults/src/assets/css/main.scss +32 -0
  187. package/dist/defaults/src/assets/js/components/background/index.js +22 -0
  188. package/dist/defaults/src/assets/js/components/content/index.js +22 -0
  189. package/dist/defaults/src/assets/js/components/options/index.js +22 -0
  190. package/dist/defaults/src/assets/js/components/pages/index.js +22 -0
  191. package/dist/defaults/src/assets/js/components/popup/index.js +22 -0
  192. package/dist/defaults/src/assets/js/components/sidepanel/index.js +20 -0
  193. package/dist/defaults/src/assets/vendor/.gitkeep +0 -0
  194. package/dist/defaults/src/manifest.json +11 -6
  195. package/dist/defaults/src/views/options/index.html +8 -0
  196. package/dist/defaults/src/views/pages/index.html +10 -0
  197. package/dist/defaults/src/views/popup/index.html +4 -0
  198. package/dist/defaults/src/views/sidepanel/index.html +4 -0
  199. package/dist/gulp/main.js +11 -5
  200. package/dist/gulp/plugins/webpack/strip-dev-blocks.js +53 -0
  201. package/dist/gulp/tasks/{_package.js → BU/_package.js} +1 -1
  202. package/dist/gulp/tasks/{developmentRebuild.js → BU/developmentRebuild.js} +1 -1
  203. package/dist/gulp/tasks/{themes.js → BU/themes.js} +3 -2
  204. package/dist/gulp/tasks/{test.js → _.js} +3 -3
  205. package/dist/gulp/tasks/audit.js +154 -0
  206. package/dist/gulp/tasks/defaults.js +308 -0
  207. package/dist/gulp/tasks/distribute.js +87 -92
  208. package/dist/gulp/tasks/html.js +150 -0
  209. package/dist/gulp/tasks/icons.js +3 -2
  210. package/dist/gulp/tasks/package.js +216 -27
  211. package/dist/gulp/tasks/sass.js +188 -43
  212. package/dist/gulp/tasks/serve.js +1 -0
  213. package/dist/gulp/tasks/utils/template-transform.js +50 -0
  214. package/dist/gulp/tasks/webpack.js +338 -134
  215. package/dist/index.js +34 -34
  216. package/dist/options.js +40 -0
  217. package/dist/page.js +40 -0
  218. package/dist/popup.js +40 -0
  219. package/dist/sidepanel.js +40 -0
  220. package/firebase-debug.log +322 -0
  221. package/package.json +25 -18
  222. package/dist/assets/css/main.scss +0 -3
  223. package/dist/assets/themes/bootstrap/5.3.3/css/bootstrap.css +0 -12057
  224. package/dist/assets/themes/bootstrap/5.3.3/css/bootstrap.css.map +0 -1
  225. package/dist/assets/themes/bootstrap/5.3.3/js/bootstrap.bundle.js +0 -6314
  226. package/dist/assets/themes/bootstrap/5.3.3/js/bootstrap.bundle.js.map +0 -1
  227. package/dist/assets/themes/bootstrap/5.3.3/js/bootstrap.js +0 -4494
  228. package/dist/assets/themes/bootstrap/5.3.3/js/bootstrap.js.map +0 -1
  229. package/dist/defaults/src/assets/css/content.scss +0 -2
  230. package/dist/defaults/src/assets/css/options.scss +0 -11
  231. package/dist/defaults/src/assets/css/popup.scss +0 -14
  232. package/dist/defaults/src/assets/js/background.js +0 -18
  233. package/dist/defaults/src/assets/js/content.js +0 -15
  234. package/dist/defaults/src/assets/js/options.js +0 -17
  235. package/dist/defaults/src/assets/js/popup.js +0 -17
  236. package/dist/defaults/src/pages/options.html +0 -26
  237. package/dist/defaults/src/pages/popup.html +0 -26
  238. /package/dist/{defaults/src/assets/images/_ → assets/css/bundles/.gitkeep} +0 -0
  239. /package/dist/assets/css/{fontawesome.scss → core/_fontawesome.scss} +0 -0
  240. /package/dist/defaults/src/assets/{vendor/_ → images/.gitkeep} +0 -0
  241. /package/dist/gulp/tasks/{_importer.js → BU/_importer.js} +0 -0
  242. /package/dist/gulp/tasks/{_vendor.js → BU/_vendor.js} +0 -0
package/dist/page.js ADDED
@@ -0,0 +1,40 @@
1
+ // Libraries
2
+ import { Manager as WebManager } from 'web-manager';
3
+ import extension from './lib/extension.js';
4
+ import LoggerLite from './lib/logger-lite.js';
5
+
6
+ // Class
7
+ class Manager {
8
+ constructor() {
9
+ // Properties
10
+ this.extension = null;
11
+ this.messenger = null;
12
+ this.logger = null;
13
+ this.webManager = null;
14
+ }
15
+
16
+ async initialize() {
17
+ // Configuration
18
+ const configuration = window.BEM_BUILD_JSON?.config;
19
+
20
+ // Set properties
21
+ this.extension = extension;
22
+ this.messenger = null;
23
+ this.logger = new LoggerLite('page');
24
+ this.webManager = new WebManager();
25
+
26
+ // Initialize
27
+ await this.webManager.initialize(configuration);
28
+
29
+ // Return manager instance
30
+ return this;
31
+ }
32
+
33
+ library(name) {
34
+ // Dynamic import for libraries
35
+ return import(`./lib/${name}.js`);
36
+ }
37
+ }
38
+
39
+ // Export
40
+ export default Manager;
package/dist/popup.js ADDED
@@ -0,0 +1,40 @@
1
+ // Libraries
2
+ import { Manager as WebManager } from 'web-manager';
3
+ import extension from './lib/extension.js';
4
+ import LoggerLite from './lib/logger-lite.js';
5
+
6
+ // Class
7
+ class Manager {
8
+ constructor() {
9
+ // Properties
10
+ this.extension = null;
11
+ this.messenger = null;
12
+ this.logger = null;
13
+ this.webManager = null;
14
+ }
15
+
16
+ async initialize() {
17
+ // Configuration
18
+ const configuration = window.BEM_BUILD_JSON?.config;
19
+
20
+ // Set properties
21
+ this.extension = extension;
22
+ this.messenger = null;
23
+ this.logger = new LoggerLite('popup');
24
+ this.webManager = new WebManager();
25
+
26
+ // Initialize
27
+ await this.webManager.initialize(configuration);
28
+
29
+ // Return manager instance
30
+ return this;
31
+ }
32
+
33
+ library(name) {
34
+ // Dynamic import for libraries
35
+ return import(`./lib/${name}.js`);
36
+ }
37
+ }
38
+
39
+ // Export
40
+ export default Manager;
@@ -0,0 +1,40 @@
1
+ // Libraries
2
+ import { Manager as WebManager } from 'web-manager';
3
+ import extension from './lib/extension.js';
4
+ import LoggerLite from './lib/logger-lite.js';
5
+
6
+ // Class
7
+ class Manager {
8
+ constructor() {
9
+ // Properties
10
+ this.extension = null;
11
+ this.messenger = null;
12
+ this.logger = null;
13
+ this.webManager = null;
14
+ }
15
+
16
+ async initialize() {
17
+ // Configuration
18
+ const configuration = window.BEM_BUILD_JSON?.config;
19
+
20
+ // Set properties
21
+ this.extension = extension;
22
+ this.messenger = null;
23
+ this.logger = new LoggerLite('sidepanel');
24
+ this.webManager = new WebManager();
25
+
26
+ // Initialize
27
+ await this.webManager.initialize(configuration);
28
+
29
+ // Return manager instance
30
+ return this;
31
+ }
32
+
33
+ library(name) {
34
+ // Dynamic import for libraries
35
+ return import(`./lib/${name}.js`);
36
+ }
37
+ }
38
+
39
+ // Export
40
+ export default Manager;
@@ -0,0 +1,322 @@
1
+ [debug] [2025-11-12T00:28:08.195Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2
+ [debug] [2025-11-12T00:28:08.195Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3
+ [debug] [2025-11-12T00:28:08.197Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
4
+ [debug] [2025-11-12T00:28:08.197Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
5
+ [debug] [2025-11-12T00:28:08.197Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
6
+ [debug] [2025-11-12T00:28:08.205Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
7
+ [debug] [2025-11-12T00:28:08.205Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
8
+ [debug] [2025-11-12T00:28:08.197Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
9
+ [debug] [2025-11-12T00:28:08.197Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
10
+ [debug] [2025-11-12T00:28:08.197Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
11
+ [debug] [2025-11-12T00:28:08.205Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
12
+ [debug] [2025-11-12T00:28:08.205Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
13
+ [debug] [2025-11-12T00:28:08.236Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
14
+ [debug] [2025-11-12T00:28:08.237Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
15
+ [debug] [2025-11-12T00:28:08.237Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
16
+ [debug] [2025-11-12T00:28:08.237Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
17
+ [debug] [2025-11-12T00:28:08.238Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
18
+ [debug] [2025-11-12T00:28:08.239Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
19
+ [debug] [2025-11-12T00:28:08.239Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
20
+ [debug] [2025-11-12T00:28:08.239Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
21
+ [debug] [2025-11-12T00:28:08.239Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
22
+ [debug] [2025-11-12T00:28:08.237Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
23
+ [debug] [2025-11-12T00:28:08.237Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
24
+ [debug] [2025-11-12T00:28:08.238Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
25
+ [debug] [2025-11-12T00:28:08.239Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
26
+ [debug] [2025-11-12T00:28:08.239Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
27
+ [debug] [2025-11-12T00:28:08.239Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
28
+ [debug] [2025-11-12T00:28:08.239Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
29
+ [debug] [2025-11-12T00:31:45.707Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
30
+ [debug] [2025-11-12T00:31:45.711Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
31
+ [debug] [2025-11-12T00:31:45.709Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
32
+ [debug] [2025-11-12T00:31:45.709Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
33
+ [debug] [2025-11-12T00:31:45.709Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
34
+ [debug] [2025-11-12T00:31:45.717Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
35
+ [debug] [2025-11-12T00:31:45.717Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
36
+ [debug] [2025-11-12T00:31:45.713Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
37
+ [debug] [2025-11-12T00:31:45.713Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
38
+ [debug] [2025-11-12T00:31:45.713Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
39
+ [debug] [2025-11-12T00:31:45.721Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
40
+ [debug] [2025-11-12T00:31:45.722Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
41
+ [debug] [2025-11-12T00:31:45.749Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
42
+ [debug] [2025-11-12T00:31:45.749Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
43
+ [debug] [2025-11-12T00:31:45.750Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
44
+ [debug] [2025-11-12T00:31:45.750Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
45
+ [debug] [2025-11-12T00:31:45.752Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
46
+ [debug] [2025-11-12T00:31:45.752Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
47
+ [debug] [2025-11-12T00:31:45.752Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
48
+ [debug] [2025-11-12T00:31:45.752Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
49
+ [debug] [2025-11-12T00:31:45.753Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
50
+ [debug] [2025-11-12T00:31:45.754Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
51
+ [debug] [2025-11-12T00:31:45.755Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
52
+ [debug] [2025-11-12T00:31:45.755Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
53
+ [debug] [2025-11-12T00:31:45.756Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
54
+ [debug] [2025-11-12T00:31:45.756Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
55
+ [debug] [2025-11-12T00:31:45.757Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
56
+ [debug] [2025-11-12T00:31:45.757Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
57
+ [debug] [2025-11-12T00:31:49.343Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
58
+ [debug] [2025-11-12T00:31:49.345Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
59
+ [debug] [2025-11-12T00:31:49.345Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
60
+ [debug] [2025-11-12T00:31:49.345Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
61
+ [debug] [2025-11-12T00:31:49.353Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
62
+ [debug] [2025-11-12T00:31:49.353Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
63
+ [debug] [2025-11-12T00:31:49.385Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
64
+ [debug] [2025-11-12T00:31:49.385Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
65
+ [debug] [2025-11-12T00:31:49.386Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
66
+ [debug] [2025-11-12T00:31:49.386Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
67
+ [debug] [2025-11-12T00:31:49.387Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
68
+ [debug] [2025-11-12T00:31:49.387Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
69
+ [debug] [2025-11-12T00:31:49.388Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
70
+ [debug] [2025-11-12T00:31:49.388Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
71
+ [debug] [2025-11-12T00:31:58.918Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
72
+ [debug] [2025-11-12T00:31:58.920Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
73
+ [debug] [2025-11-12T00:31:58.924Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
74
+ [debug] [2025-11-12T00:31:58.924Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
75
+ [debug] [2025-11-12T00:31:58.924Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
76
+ [debug] [2025-11-12T00:31:58.933Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
77
+ [debug] [2025-11-12T00:31:58.933Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
78
+ [debug] [2025-11-12T00:31:58.921Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
79
+ [debug] [2025-11-12T00:31:58.921Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
80
+ [debug] [2025-11-12T00:31:58.921Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
81
+ [debug] [2025-11-12T00:31:58.934Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
82
+ [debug] [2025-11-12T00:31:58.934Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
83
+ [debug] [2025-11-12T00:31:58.966Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
84
+ [debug] [2025-11-12T00:31:58.966Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
85
+ [debug] [2025-11-12T00:31:58.966Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
86
+ [debug] [2025-11-12T00:31:58.967Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
87
+ [debug] [2025-11-12T00:31:58.967Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
88
+ [debug] [2025-11-12T00:31:58.968Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
89
+ [debug] [2025-11-12T00:31:58.968Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
90
+ [debug] [2025-11-12T00:31:58.968Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
91
+ [debug] [2025-11-12T00:31:58.968Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
92
+ [debug] [2025-11-12T00:31:58.966Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
93
+ [debug] [2025-11-12T00:31:58.967Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
94
+ [debug] [2025-11-12T00:31:58.967Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
95
+ [debug] [2025-11-12T00:31:58.969Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
96
+ [debug] [2025-11-12T00:31:58.969Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
97
+ [debug] [2025-11-12T00:31:58.969Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
98
+ [debug] [2025-11-12T00:31:58.969Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
99
+ [debug] [2025-11-12T00:38:26.895Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
100
+ [debug] [2025-11-12T00:38:26.897Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
101
+ [debug] [2025-11-12T00:38:26.897Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
102
+ [debug] [2025-11-12T00:38:26.897Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
103
+ [debug] [2025-11-12T00:38:26.897Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
104
+ [debug] [2025-11-12T00:38:26.905Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
105
+ [debug] [2025-11-12T00:38:26.906Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
106
+ [debug] [2025-11-12T00:38:26.899Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
107
+ [debug] [2025-11-12T00:38:26.899Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
108
+ [debug] [2025-11-12T00:38:26.899Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
109
+ [debug] [2025-11-12T00:38:26.910Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
110
+ [debug] [2025-11-12T00:38:26.911Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
111
+ [debug] [2025-11-12T00:38:26.938Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
112
+ [debug] [2025-11-12T00:38:26.938Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
113
+ [debug] [2025-11-12T00:38:26.939Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
114
+ [debug] [2025-11-12T00:38:26.939Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
115
+ [debug] [2025-11-12T00:38:26.941Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
116
+ [debug] [2025-11-12T00:38:26.941Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
117
+ [debug] [2025-11-12T00:38:26.941Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
118
+ [debug] [2025-11-12T00:38:26.941Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
119
+ [debug] [2025-11-12T00:38:26.943Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
120
+ [debug] [2025-11-12T00:38:26.943Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
121
+ [debug] [2025-11-12T00:38:26.943Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
122
+ [debug] [2025-11-12T00:38:26.944Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
123
+ [debug] [2025-11-12T00:38:26.945Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
124
+ [debug] [2025-11-12T00:38:26.945Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
125
+ [debug] [2025-11-12T00:38:26.946Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
126
+ [debug] [2025-11-12T00:38:26.946Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
127
+ [debug] [2025-11-12T23:59:46.862Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
128
+ [debug] [2025-11-12T23:59:46.862Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
129
+ [debug] [2025-11-12T23:59:46.864Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
130
+ [debug] [2025-11-12T23:59:46.865Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
131
+ [debug] [2025-11-12T23:59:46.865Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
132
+ [debug] [2025-11-12T23:59:46.877Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
133
+ [debug] [2025-11-12T23:59:46.878Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
134
+ [debug] [2025-11-12T23:59:46.864Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
135
+ [debug] [2025-11-12T23:59:46.864Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
136
+ [debug] [2025-11-12T23:59:46.865Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
137
+ [debug] [2025-11-12T23:59:46.877Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
138
+ [debug] [2025-11-12T23:59:46.878Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
139
+ [debug] [2025-11-12T23:59:46.944Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
140
+ [debug] [2025-11-12T23:59:46.945Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
141
+ [debug] [2025-11-12T23:59:46.944Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
142
+ [debug] [2025-11-12T23:59:46.945Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
143
+ [debug] [2025-11-12T23:59:46.945Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
144
+ [debug] [2025-11-12T23:59:46.946Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
145
+ [debug] [2025-11-12T23:59:46.946Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
146
+ [debug] [2025-11-12T23:59:46.947Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
147
+ [debug] [2025-11-12T23:59:46.947Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
148
+ [debug] [2025-11-12T23:59:46.945Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
149
+ [debug] [2025-11-12T23:59:46.946Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
150
+ [debug] [2025-11-12T23:59:46.947Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
151
+ [debug] [2025-11-12T23:59:46.948Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
152
+ [debug] [2025-11-12T23:59:46.948Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
153
+ [debug] [2025-11-12T23:59:46.948Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
154
+ [debug] [2025-11-12T23:59:46.948Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
155
+ [debug] [2025-11-12T23:59:50.699Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
156
+ [debug] [2025-11-12T23:59:50.701Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
157
+ [debug] [2025-11-12T23:59:50.705Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
158
+ [debug] [2025-11-12T23:59:50.705Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
159
+ [debug] [2025-11-12T23:59:50.714Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
160
+ [debug] [2025-11-12T23:59:50.714Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
161
+ [debug] [2025-11-12T23:59:50.769Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
162
+ [debug] [2025-11-12T23:59:50.770Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
163
+ [debug] [2025-11-12T23:59:50.770Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
164
+ [debug] [2025-11-12T23:59:50.771Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
165
+ [debug] [2025-11-12T23:59:50.772Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
166
+ [debug] [2025-11-12T23:59:50.772Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
167
+ [debug] [2025-11-12T23:59:50.772Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
168
+ [debug] [2025-11-12T23:59:50.772Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
169
+ [debug] [2025-11-13T20:53:00.218Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
170
+ [debug] [2025-11-13T20:53:00.221Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
171
+ [debug] [2025-11-13T20:53:00.220Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
172
+ [debug] [2025-11-13T20:53:00.220Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
173
+ [debug] [2025-11-13T20:53:00.221Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
174
+ [debug] [2025-11-13T20:53:00.228Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
175
+ [debug] [2025-11-13T20:53:00.229Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
176
+ [debug] [2025-11-13T20:53:00.223Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
177
+ [debug] [2025-11-13T20:53:00.223Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
178
+ [debug] [2025-11-13T20:53:00.223Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
179
+ [debug] [2025-11-13T20:53:00.234Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
180
+ [debug] [2025-11-13T20:53:00.234Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
181
+ [debug] [2025-11-13T20:53:00.292Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
182
+ [debug] [2025-11-13T20:53:00.294Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
183
+ [debug] [2025-11-13T20:53:00.292Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
184
+ [debug] [2025-11-13T20:53:00.293Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
185
+ [debug] [2025-11-13T20:53:00.293Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
186
+ [debug] [2025-11-13T20:53:00.294Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
187
+ [debug] [2025-11-13T20:53:00.294Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
188
+ [debug] [2025-11-13T20:53:00.295Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
189
+ [debug] [2025-11-13T20:53:00.295Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
190
+ [debug] [2025-11-13T20:53:00.294Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
191
+ [debug] [2025-11-13T20:53:00.295Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
192
+ [debug] [2025-11-13T20:53:00.295Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
193
+ [debug] [2025-11-13T20:53:00.296Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
194
+ [debug] [2025-11-13T20:53:00.297Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
195
+ [debug] [2025-11-13T20:53:00.297Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
196
+ [debug] [2025-11-13T20:53:00.297Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
197
+ [debug] [2025-11-13T22:10:25.275Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
198
+ [debug] [2025-11-13T22:10:25.284Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
199
+ [debug] [2025-11-13T22:10:25.277Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
200
+ [debug] [2025-11-13T22:10:25.277Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
201
+ [debug] [2025-11-13T22:10:25.277Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
202
+ [debug] [2025-11-13T22:10:25.286Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
203
+ [debug] [2025-11-13T22:10:25.287Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
204
+ [debug] [2025-11-13T22:10:25.286Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
205
+ [debug] [2025-11-13T22:10:25.286Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
206
+ [debug] [2025-11-13T22:10:25.286Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
207
+ [debug] [2025-11-13T22:10:25.294Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
208
+ [debug] [2025-11-13T22:10:25.294Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
209
+ [debug] [2025-11-13T22:10:25.354Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
210
+ [debug] [2025-11-13T22:10:25.356Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
211
+ [debug] [2025-11-13T22:10:25.354Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
212
+ [debug] [2025-11-13T22:10:25.355Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
213
+ [debug] [2025-11-13T22:10:25.355Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
214
+ [debug] [2025-11-13T22:10:25.356Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
215
+ [debug] [2025-11-13T22:10:25.356Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
216
+ [debug] [2025-11-13T22:10:25.357Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
217
+ [debug] [2025-11-13T22:10:25.357Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
218
+ [debug] [2025-11-13T22:10:25.356Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
219
+ [debug] [2025-11-13T22:10:25.357Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
220
+ [debug] [2025-11-13T22:10:25.357Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
221
+ [debug] [2025-11-13T22:10:25.359Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
222
+ [debug] [2025-11-13T22:10:25.359Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
223
+ [debug] [2025-11-13T22:10:25.359Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
224
+ [debug] [2025-11-13T22:10:25.359Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
225
+ [debug] [2025-11-13T22:34:16.672Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
226
+ [debug] [2025-11-13T22:34:16.674Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
227
+ [debug] [2025-11-13T22:34:16.674Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
228
+ [debug] [2025-11-13T22:34:16.674Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
229
+ [debug] [2025-11-13T22:34:16.674Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
230
+ [debug] [2025-11-13T22:34:16.682Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
231
+ [debug] [2025-11-13T22:34:16.682Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
232
+ [debug] [2025-11-13T22:34:16.676Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
233
+ [debug] [2025-11-13T22:34:16.677Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
234
+ [debug] [2025-11-13T22:34:16.677Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
235
+ [debug] [2025-11-13T22:34:16.685Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
236
+ [debug] [2025-11-13T22:34:16.685Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
237
+ [debug] [2025-11-13T22:34:16.746Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
238
+ [debug] [2025-11-13T22:34:16.746Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
239
+ [debug] [2025-11-13T22:34:16.747Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
240
+ [debug] [2025-11-13T22:34:16.747Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
241
+ [debug] [2025-11-13T22:34:16.748Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
242
+ [debug] [2025-11-13T22:34:16.748Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
243
+ [debug] [2025-11-13T22:34:16.749Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
244
+ [debug] [2025-11-13T22:34:16.749Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
245
+ [debug] [2025-11-13T22:34:16.752Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
246
+ [debug] [2025-11-13T22:34:16.752Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
247
+ [debug] [2025-11-13T22:34:16.753Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
248
+ [debug] [2025-11-13T22:34:16.753Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
249
+ [debug] [2025-11-13T22:34:16.755Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
250
+ [debug] [2025-11-13T22:34:16.755Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
251
+ [debug] [2025-11-13T22:34:16.755Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
252
+ [debug] [2025-11-13T22:34:16.755Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
253
+ [debug] [2025-11-13T22:35:13.179Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
254
+ [debug] [2025-11-13T22:35:13.182Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
255
+ [debug] [2025-11-13T22:35:13.182Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
256
+ [debug] [2025-11-13T22:35:13.182Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
257
+ [debug] [2025-11-13T22:35:13.182Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
258
+ [debug] [2025-11-13T22:35:13.195Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
259
+ [debug] [2025-11-13T22:35:13.195Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
260
+ [debug] [2025-11-13T22:35:13.186Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
261
+ [debug] [2025-11-13T22:35:13.186Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
262
+ [debug] [2025-11-13T22:35:13.186Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
263
+ [debug] [2025-11-13T22:35:13.209Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
264
+ [debug] [2025-11-13T22:35:13.209Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
265
+ [debug] [2025-11-13T22:35:13.284Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
266
+ [debug] [2025-11-13T22:35:13.285Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
267
+ [debug] [2025-11-13T22:35:13.285Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
268
+ [debug] [2025-11-13T22:35:13.285Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
269
+ [debug] [2025-11-13T22:35:13.287Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
270
+ [debug] [2025-11-13T22:35:13.287Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
271
+ [debug] [2025-11-13T22:35:13.287Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
272
+ [debug] [2025-11-13T22:35:13.287Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
273
+ [debug] [2025-11-13T22:35:13.297Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
274
+ [debug] [2025-11-13T22:35:13.297Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
275
+ [debug] [2025-11-13T22:35:13.298Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
276
+ [debug] [2025-11-13T22:35:13.298Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
277
+ [debug] [2025-11-13T22:35:13.300Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
278
+ [debug] [2025-11-13T22:35:13.300Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
279
+ [debug] [2025-11-13T22:35:13.300Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
280
+ [debug] [2025-11-13T22:35:13.300Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
281
+ [debug] [2025-11-13T22:35:13.686Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
282
+ [debug] [2025-11-13T22:35:13.688Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
283
+ [debug] [2025-11-13T22:35:13.688Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
284
+ [debug] [2025-11-13T22:35:13.688Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
285
+ [debug] [2025-11-13T22:35:13.697Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
286
+ [debug] [2025-11-13T22:35:13.697Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
287
+ [debug] [2025-11-13T22:35:13.764Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
288
+ [debug] [2025-11-13T22:35:13.764Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
289
+ [debug] [2025-11-13T22:35:13.765Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
290
+ [debug] [2025-11-13T22:35:13.765Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
291
+ [debug] [2025-11-13T22:35:13.766Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
292
+ [debug] [2025-11-13T22:35:13.766Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
293
+ [debug] [2025-11-13T22:35:13.767Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
294
+ [debug] [2025-11-13T22:35:13.767Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
295
+ [debug] [2025-11-14T03:24:36.783Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
296
+ [debug] [2025-11-14T03:24:36.783Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
297
+ [debug] [2025-11-14T03:24:36.785Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
298
+ [debug] [2025-11-14T03:24:36.785Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
299
+ [debug] [2025-11-14T03:24:36.785Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
300
+ [debug] [2025-11-14T03:24:36.793Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
301
+ [debug] [2025-11-14T03:24:36.794Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
302
+ [debug] [2025-11-14T03:24:36.785Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
303
+ [debug] [2025-11-14T03:24:36.785Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
304
+ [debug] [2025-11-14T03:24:36.785Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
305
+ [debug] [2025-11-14T03:24:36.794Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
306
+ [debug] [2025-11-14T03:24:36.794Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
307
+ [debug] [2025-11-14T03:24:36.857Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
308
+ [debug] [2025-11-14T03:24:36.857Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
309
+ [debug] [2025-11-14T03:24:36.857Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
310
+ [debug] [2025-11-14T03:24:36.858Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
311
+ [debug] [2025-11-14T03:24:36.858Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
312
+ [debug] [2025-11-14T03:24:36.860Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
313
+ [debug] [2025-11-14T03:24:36.860Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
314
+ [debug] [2025-11-14T03:24:36.860Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
315
+ [debug] [2025-11-14T03:24:36.860Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
316
+ [debug] [2025-11-14T03:24:36.857Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
317
+ [debug] [2025-11-14T03:24:36.858Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
318
+ [debug] [2025-11-14T03:24:36.858Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
319
+ [debug] [2025-11-14T03:24:36.859Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
320
+ [debug] [2025-11-14T03:24:36.859Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
321
+ [debug] [2025-11-14T03:24:36.860Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
322
+ [debug] [2025-11-14T03:24:36.860Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
package/package.json CHANGED
@@ -1,17 +1,24 @@
1
1
  {
2
2
  "name": "browser-extension-manager",
3
- "version": "1.0.13",
3
+ "version": "1.1.0",
4
4
  "description": "Browser Extension Manager dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  ".": "./dist/index.js",
8
8
  "./build": "./dist/build.js",
9
9
  "./background": "./dist/background.js",
10
- "./content": "./dist/content.js"
10
+ "./content": "./dist/content.js",
11
+ "./popup": "./dist/popup.js",
12
+ "./sidepanel": "./dist/sidepanel.js",
13
+ "./options": "./dist/options.js",
14
+ "./page": "./dist/page.js"
11
15
  },
12
16
  "scripts": {
17
+ "start": "npm run prepare:watch",
13
18
  "prepare": "node -e \"require('prepare-package')()\"",
14
- "prepare:watch": "nodemon -w ./src -e '*' --exec 'npm run prepare'"
19
+ "prepare:watch": "node -e \"require('prepare-package/watch')()\"",
20
+ "wm:prod": "npm uninstall web-manager && npm i web-manager@latest",
21
+ "wm:local": "npm uninstall web-manager && npm i ../web-manager"
15
22
  },
16
23
  "bin": {
17
24
  "ext": "bin/browser-extension-manager",
@@ -53,36 +60,36 @@
53
60
  },
54
61
  "homepage": "https://template.itwcreativeworks.com",
55
62
  "dependencies": {
56
- "@babel/core": "^7.26.10",
57
- "@babel/preset-env": "^7.26.9",
58
- "@fortawesome/fontawesome-free": "^6.7.2",
59
- "babel-loader": "^9.2.1",
63
+ "@babel/core": "^7.28.5",
64
+ "@babel/preset-env": "^7.28.5",
65
+ "babel-loader": "^10.0.0",
60
66
  "chalk": "^4.1.2",
61
67
  "fs-jetpack": "^5.1.0",
62
- "glob": "^11.0.2",
68
+ "glob": "^11.0.3",
63
69
  "gulp-clean-css": "^4.3.0",
64
- "gulp-rename": "^2.0.0",
70
+ "gulp-filter": "^9.0.1",
71
+ "gulp-rename": "^2.1.0",
65
72
  "gulp-responsive-modern": "^1.0.0",
66
73
  "gulp-sass": "^6.0.1",
67
74
  "itwcw-package-analytics": "^1.0.6",
68
75
  "json5": "^2.2.3",
69
76
  "lodash": "^4.17.21",
70
- "minimatch": "^10.0.1",
71
- "node-powertools": "^2.2.0",
77
+ "minimatch": "^10.1.1",
78
+ "node-powertools": "^2.3.2",
72
79
  "npm-api": "^1.0.1",
73
- "sass": "^1.87.0",
80
+ "sass": "^1.94.0",
74
81
  "through2": "^4.0.2",
75
- "web-manager": "^3.2.73",
76
- "webpack": "^5.99.6",
77
- "wonderful-fetch": "^1.3.3",
82
+ "web-manager": "^4.0.23",
83
+ "webpack": "^5.102.1",
84
+ "wonderful-fetch": "^1.3.4",
78
85
  "wonderful-version": "^1.3.2",
79
- "ws": "^8.18.1",
86
+ "ws": "^8.18.3",
80
87
  "yargs": "^17.7.2"
81
88
  },
82
89
  "peerDependencies": {
83
- "gulp": "^5.0.0"
90
+ "gulp": "^5.0.1"
84
91
  },
85
92
  "devDependencies": {
86
- "prepare-package": "^1.1.14"
93
+ "prepare-package": "^1.2.5"
87
94
  }
88
95
  }
@@ -1,3 +0,0 @@
1
- body {
2
- font-family: 'main.css2', sans-serif;
3
- }