@dotenvx/next-env 0.1.0 → 1.74.3

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 (2066) hide show
  1. package/README.md +24 -0
  2. package/index.cjs +191 -0
  3. package/node_modules/@dotenvx/dotenvx/CHANGELOG.md +2104 -0
  4. package/node_modules/@dotenvx/dotenvx/LICENSE +28 -0
  5. package/node_modules/@dotenvx/dotenvx/README.md +2781 -0
  6. package/node_modules/@dotenvx/dotenvx/package.json +77 -0
  7. package/node_modules/@dotenvx/dotenvx/src/cli/actions/armor/down.js +37 -0
  8. package/node_modules/@dotenvx/dotenvx/src/cli/actions/armor/move.js +42 -0
  9. package/node_modules/@dotenvx/dotenvx/src/cli/actions/armor/pull.js +37 -0
  10. package/node_modules/@dotenvx/dotenvx/src/cli/actions/armor/push.js +37 -0
  11. package/node_modules/@dotenvx/dotenvx/src/cli/actions/armor/up.js +37 -0
  12. package/node_modules/@dotenvx/dotenvx/src/cli/actions/decrypt.js +93 -0
  13. package/node_modules/@dotenvx/dotenvx/src/cli/actions/doctor.js +22 -0
  14. package/node_modules/@dotenvx/dotenvx/src/cli/actions/encrypt.js +114 -0
  15. package/node_modules/@dotenvx/dotenvx/src/cli/actions/ext/genexample.js +36 -0
  16. package/node_modules/@dotenvx/dotenvx/src/cli/actions/ext/gitignore.js +105 -0
  17. package/node_modules/@dotenvx/dotenvx/src/cli/actions/ext/prebuild.js +30 -0
  18. package/node_modules/@dotenvx/dotenvx/src/cli/actions/ext/precommit.js +30 -0
  19. package/node_modules/@dotenvx/dotenvx/src/cli/actions/ext/scan.js +34 -0
  20. package/node_modules/@dotenvx/dotenvx/src/cli/actions/get.js +98 -0
  21. package/node_modules/@dotenvx/dotenvx/src/cli/actions/keypair.js +66 -0
  22. package/node_modules/@dotenvx/dotenvx/src/cli/actions/login.js +62 -0
  23. package/node_modules/@dotenvx/dotenvx/src/cli/actions/logout.js +36 -0
  24. package/node_modules/@dotenvx/dotenvx/src/cli/actions/ls.js +24 -0
  25. package/node_modules/@dotenvx/dotenvx/src/cli/actions/normalizeArmorOptions.js +10 -0
  26. package/node_modules/@dotenvx/dotenvx/src/cli/actions/rotate.js +87 -0
  27. package/node_modules/@dotenvx/dotenvx/src/cli/actions/run.js +126 -0
  28. package/node_modules/@dotenvx/dotenvx/src/cli/actions/set.js +92 -0
  29. package/node_modules/@dotenvx/dotenvx/src/cli/commands/armor.js +72 -0
  30. package/node_modules/@dotenvx/dotenvx/src/cli/commands/ext.js +85 -0
  31. package/node_modules/@dotenvx/dotenvx/src/cli/dotenvx.js +297 -0
  32. package/node_modules/@dotenvx/dotenvx/src/cli/examples.js +99 -0
  33. package/node_modules/@dotenvx/dotenvx/src/db/device.js +73 -0
  34. package/node_modules/@dotenvx/dotenvx/src/db/session.js +279 -0
  35. package/node_modules/@dotenvx/dotenvx/src/lib/api/getAccount.js +32 -0
  36. package/node_modules/@dotenvx/dotenvx/src/lib/api/postArmorDown.js +48 -0
  37. package/node_modules/@dotenvx/dotenvx/src/lib/api/postArmorMove.js +48 -0
  38. package/node_modules/@dotenvx/dotenvx/src/lib/api/postArmorPull.js +48 -0
  39. package/node_modules/@dotenvx/dotenvx/src/lib/api/postArmorPush.js +48 -0
  40. package/node_modules/@dotenvx/dotenvx/src/lib/api/postArmorUp.js +51 -0
  41. package/node_modules/@dotenvx/dotenvx/src/lib/api/postKeypair.js +60 -0
  42. package/node_modules/@dotenvx/dotenvx/src/lib/api/postLogout.js +34 -0
  43. package/node_modules/@dotenvx/dotenvx/src/lib/api/postOauthDeviceCode.js +38 -0
  44. package/node_modules/@dotenvx/dotenvx/src/lib/api/postOauthToken.js +35 -0
  45. package/node_modules/@dotenvx/dotenvx/src/lib/config.d.ts +1 -0
  46. package/node_modules/@dotenvx/dotenvx/src/lib/config.js +1 -0
  47. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/append.js +61 -0
  48. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/armoredKeyDisplay.js +10 -0
  49. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/arrayToTree.js +27 -0
  50. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/buildApiError.js +16 -0
  51. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/buildEnvs.js +24 -0
  52. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/buildOauthError.js +14 -0
  53. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/canonicalEnvFilename.js +13 -0
  54. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/catchAndLog.js +13 -0
  55. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/chomp.js +5 -0
  56. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/colorDepth.js +17 -0
  57. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/conventions.js +28 -0
  58. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/createSpinner.js +24 -0
  59. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/armorKeypair.js +42 -0
  60. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/armorKeypairSync.js +55 -0
  61. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/decryptKeyValue.js +50 -0
  62. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/encryptValue.js +12 -0
  63. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/index.js +18 -0
  64. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/isEncrypted.js +7 -0
  65. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/isPublicKey.js +7 -0
  66. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/localKeypair.js +21 -0
  67. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/mutateKeysSrc.js +38 -0
  68. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/mutateKeysSrcSync.js +38 -0
  69. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/mutateSrc.js +24 -0
  70. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/provision.js +56 -0
  71. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/provisionSync.js +51 -0
  72. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/cryptography/provisionWithPrivateKey.js +26 -0
  73. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/decryptDeviceValue.js +10 -0
  74. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/detectEncoding.js +22 -0
  75. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/detectEncodingSync.js +22 -0
  76. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/dotenvOptionPaths.js +21 -0
  77. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/dotenvParse.js +55 -0
  78. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/dotenvPrivateKeyNames.js +7 -0
  79. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/encryptDeviceValue.js +9 -0
  80. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/envResolution/determine.js +46 -0
  81. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/envResolution/environment.js +27 -0
  82. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/envResolution/index.js +8 -0
  83. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/errors.js +295 -0
  84. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/escape.js +5 -0
  85. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/escapeDollarSigns.js +5 -0
  86. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/escapeForRegex.js +5 -0
  87. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/evalKeyValue.js +23 -0
  88. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/execute.js +12 -0
  89. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/executeCommand.js +181 -0
  90. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/executeDynamic.js +106 -0
  91. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/executeExtension.js +39 -0
  92. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/findEnvFiles.js +25 -0
  93. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/formatCode.js +11 -0
  94. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/fsx.js +54 -0
  95. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/getCommanderVersion.js +10 -0
  96. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/guessPrivateKeyFilename.js +15 -0
  97. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/http.js +7 -0
  98. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/installPrecommitHook.js +79 -0
  99. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/isFullyEncrypted.js +27 -0
  100. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/isIgnoringDotenvKeys.js +19 -0
  101. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/jsonToEnv.js +7 -0
  102. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/keyResolution/index.js +16 -0
  103. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/keyResolution/keyNamesForEnvFile.js +24 -0
  104. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/keyResolution/keyValues.js +99 -0
  105. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/keyResolution/keyValuesFromEnvSrc.js +80 -0
  106. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/keyResolution/keyValuesSync.js +103 -0
  107. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/keyResolution/readFileKey.js +17 -0
  108. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/keyResolution/readFileKeySync.js +15 -0
  109. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/keyResolution/readProcessKey.js +7 -0
  110. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/keypairMetadata.js +77 -0
  111. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/kits/sample.js +23 -0
  112. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/listenForOpenKey.js +46 -0
  113. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/localDisplayPath.js +11 -0
  114. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/normalizeToken.js +5 -0
  115. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/openUrl.js +7 -0
  116. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/packageJson.js +3 -0
  117. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/parse.js +214 -0
  118. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/pluralize.js +10 -0
  119. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/prependPublicKey.js +17 -0
  120. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/preserveShebang.js +16 -0
  121. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/prompts.js +43 -0
  122. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/quotes.js +36 -0
  123. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/readEnvKey.js +31 -0
  124. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/removeDynamicHelpSection.js +21 -0
  125. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/removeEnvKey.js +50 -0
  126. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/removeOptionsHelpParts.js +42 -0
  127. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/replace.js +82 -0
  128. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/resolveEscapeSequences.js +5 -0
  129. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/resolveHome.js +12 -0
  130. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/sanitizeCommandForMetadata.js +64 -0
  131. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/teamChoicesFromMeta.js +8 -0
  132. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/truncate.js +10 -0
  133. package/node_modules/@dotenvx/dotenvx/src/lib/helpers/upsertEnvKey.js +61 -0
  134. package/node_modules/@dotenvx/dotenvx/src/lib/main.d.ts +420 -0
  135. package/node_modules/@dotenvx/dotenvx/src/lib/main.js +347 -0
  136. package/node_modules/@dotenvx/dotenvx/src/lib/services/armorDown.js +71 -0
  137. package/node_modules/@dotenvx/dotenvx/src/lib/services/armorKeypair.js +156 -0
  138. package/node_modules/@dotenvx/dotenvx/src/lib/services/armorMove.js +54 -0
  139. package/node_modules/@dotenvx/dotenvx/src/lib/services/armorPull.js +71 -0
  140. package/node_modules/@dotenvx/dotenvx/src/lib/services/armorPush.js +76 -0
  141. package/node_modules/@dotenvx/dotenvx/src/lib/services/armorUp.js +73 -0
  142. package/node_modules/@dotenvx/dotenvx/src/lib/services/decrypt.js +157 -0
  143. package/node_modules/@dotenvx/dotenvx/src/lib/services/doctor.js +93 -0
  144. package/node_modules/@dotenvx/dotenvx/src/lib/services/encrypt.js +214 -0
  145. package/node_modules/@dotenvx/dotenvx/src/lib/services/genexample.js +101 -0
  146. package/node_modules/@dotenvx/dotenvx/src/lib/services/get.js +76 -0
  147. package/node_modules/@dotenvx/dotenvx/src/lib/services/keypair.js +60 -0
  148. package/node_modules/@dotenvx/dotenvx/src/lib/services/login.js +26 -0
  149. package/node_modules/@dotenvx/dotenvx/src/lib/services/loginPoll.js +36 -0
  150. package/node_modules/@dotenvx/dotenvx/src/lib/services/logout.js +26 -0
  151. package/node_modules/@dotenvx/dotenvx/src/lib/services/ls.js +57 -0
  152. package/node_modules/@dotenvx/dotenvx/src/lib/services/prebuild.js +86 -0
  153. package/node_modules/@dotenvx/dotenvx/src/lib/services/precommit.js +133 -0
  154. package/node_modules/@dotenvx/dotenvx/src/lib/services/rotate.js +198 -0
  155. package/node_modules/@dotenvx/dotenvx/src/lib/services/run.js +255 -0
  156. package/node_modules/@dotenvx/dotenvx/src/lib/services/sets.js +326 -0
  157. package/node_modules/@dotenvx/dotenvx/src/shared/colors.js +67 -0
  158. package/node_modules/@dotenvx/dotenvx/src/shared/logger.js +147 -0
  159. package/node_modules/@ecies/ciphers/LICENSE +21 -0
  160. package/node_modules/@ecies/ciphers/README.md +71 -0
  161. package/node_modules/@ecies/ciphers/dist/_node/compat.d.ts +9 -0
  162. package/node_modules/@ecies/ciphers/dist/_node/compat.js +49 -0
  163. package/node_modules/@ecies/ciphers/dist/_node/hchacha.d.ts +4 -0
  164. package/node_modules/@ecies/ciphers/dist/_node/hchacha.js +89 -0
  165. package/node_modules/@ecies/ciphers/dist/aes/noble.d.ts +3 -0
  166. package/node_modules/@ecies/ciphers/dist/aes/noble.js +8 -0
  167. package/node_modules/@ecies/ciphers/dist/aes/node.d.ts +3 -0
  168. package/node_modules/@ecies/ciphers/dist/aes/node.js +8 -0
  169. package/node_modules/@ecies/ciphers/dist/chacha/noble.d.ts +3 -0
  170. package/node_modules/@ecies/ciphers/dist/chacha/noble.js +8 -0
  171. package/node_modules/@ecies/ciphers/dist/chacha/node.d.ts +3 -0
  172. package/node_modules/@ecies/ciphers/dist/chacha/node.js +26 -0
  173. package/node_modules/@ecies/ciphers/dist/index.d.ts +1 -0
  174. package/node_modules/@ecies/ciphers/dist/index.js +3 -0
  175. package/node_modules/@ecies/ciphers/package.json +76 -0
  176. package/node_modules/@noble/ciphers/LICENSE +22 -0
  177. package/node_modules/@noble/ciphers/README.md +543 -0
  178. package/node_modules/@noble/ciphers/_arx.d.ts +59 -0
  179. package/node_modules/@noble/ciphers/_arx.d.ts.map +1 -0
  180. package/node_modules/@noble/ciphers/_arx.js +175 -0
  181. package/node_modules/@noble/ciphers/_arx.js.map +1 -0
  182. package/node_modules/@noble/ciphers/_assert.d.ts +19 -0
  183. package/node_modules/@noble/ciphers/_assert.d.ts.map +1 -0
  184. package/node_modules/@noble/ciphers/_assert.js +20 -0
  185. package/node_modules/@noble/ciphers/_assert.js.map +1 -0
  186. package/node_modules/@noble/ciphers/_micro.d.ts +41 -0
  187. package/node_modules/@noble/ciphers/_micro.d.ts.map +1 -0
  188. package/node_modules/@noble/ciphers/_micro.js +260 -0
  189. package/node_modules/@noble/ciphers/_micro.js.map +1 -0
  190. package/node_modules/@noble/ciphers/_poly1305.d.ts +29 -0
  191. package/node_modules/@noble/ciphers/_poly1305.d.ts.map +1 -0
  192. package/node_modules/@noble/ciphers/_poly1305.js +281 -0
  193. package/node_modules/@noble/ciphers/_poly1305.js.map +1 -0
  194. package/node_modules/@noble/ciphers/_polyval.d.ts +33 -0
  195. package/node_modules/@noble/ciphers/_polyval.d.ts.map +1 -0
  196. package/node_modules/@noble/ciphers/_polyval.js +233 -0
  197. package/node_modules/@noble/ciphers/_polyval.js.map +1 -0
  198. package/node_modules/@noble/ciphers/aes.d.ts +117 -0
  199. package/node_modules/@noble/ciphers/aes.d.ts.map +1 -0
  200. package/node_modules/@noble/ciphers/aes.js +906 -0
  201. package/node_modules/@noble/ciphers/aes.js.map +1 -0
  202. package/node_modules/@noble/ciphers/chacha.d.ts +56 -0
  203. package/node_modules/@noble/ciphers/chacha.d.ts.map +1 -0
  204. package/node_modules/@noble/ciphers/chacha.js +320 -0
  205. package/node_modules/@noble/ciphers/chacha.js.map +1 -0
  206. package/node_modules/@noble/ciphers/crypto.d.ts +2 -0
  207. package/node_modules/@noble/ciphers/crypto.d.ts.map +1 -0
  208. package/node_modules/@noble/ciphers/crypto.js +5 -0
  209. package/node_modules/@noble/ciphers/crypto.js.map +1 -0
  210. package/node_modules/@noble/ciphers/cryptoNode.d.ts +2 -0
  211. package/node_modules/@noble/ciphers/cryptoNode.d.ts.map +1 -0
  212. package/node_modules/@noble/ciphers/cryptoNode.js +18 -0
  213. package/node_modules/@noble/ciphers/cryptoNode.js.map +1 -0
  214. package/node_modules/@noble/ciphers/esm/_arx.d.ts +59 -0
  215. package/node_modules/@noble/ciphers/esm/_arx.d.ts.map +1 -0
  216. package/node_modules/@noble/ciphers/esm/_arx.js +171 -0
  217. package/node_modules/@noble/ciphers/esm/_arx.js.map +1 -0
  218. package/node_modules/@noble/ciphers/esm/_assert.d.ts +19 -0
  219. package/node_modules/@noble/ciphers/esm/_assert.d.ts.map +1 -0
  220. package/node_modules/@noble/ciphers/esm/_assert.js +17 -0
  221. package/node_modules/@noble/ciphers/esm/_assert.js.map +1 -0
  222. package/node_modules/@noble/ciphers/esm/_micro.d.ts +41 -0
  223. package/node_modules/@noble/ciphers/esm/_micro.d.ts.map +1 -0
  224. package/node_modules/@noble/ciphers/esm/_micro.js +252 -0
  225. package/node_modules/@noble/ciphers/esm/_micro.js.map +1 -0
  226. package/node_modules/@noble/ciphers/esm/_poly1305.d.ts +29 -0
  227. package/node_modules/@noble/ciphers/esm/_poly1305.d.ts.map +1 -0
  228. package/node_modules/@noble/ciphers/esm/_poly1305.js +277 -0
  229. package/node_modules/@noble/ciphers/esm/_poly1305.js.map +1 -0
  230. package/node_modules/@noble/ciphers/esm/_polyval.d.ts +33 -0
  231. package/node_modules/@noble/ciphers/esm/_polyval.d.ts.map +1 -0
  232. package/node_modules/@noble/ciphers/esm/_polyval.js +229 -0
  233. package/node_modules/@noble/ciphers/esm/_polyval.js.map +1 -0
  234. package/node_modules/@noble/ciphers/esm/aes.d.ts +117 -0
  235. package/node_modules/@noble/ciphers/esm/aes.d.ts.map +1 -0
  236. package/node_modules/@noble/ciphers/esm/aes.js +903 -0
  237. package/node_modules/@noble/ciphers/esm/aes.js.map +1 -0
  238. package/node_modules/@noble/ciphers/esm/chacha.d.ts +56 -0
  239. package/node_modules/@noble/ciphers/esm/chacha.d.ts.map +1 -0
  240. package/node_modules/@noble/ciphers/esm/chacha.js +315 -0
  241. package/node_modules/@noble/ciphers/esm/chacha.js.map +1 -0
  242. package/node_modules/@noble/ciphers/esm/crypto.d.ts +2 -0
  243. package/node_modules/@noble/ciphers/esm/crypto.d.ts.map +1 -0
  244. package/node_modules/@noble/ciphers/esm/crypto.js +2 -0
  245. package/node_modules/@noble/ciphers/esm/crypto.js.map +1 -0
  246. package/node_modules/@noble/ciphers/esm/cryptoNode.d.ts +2 -0
  247. package/node_modules/@noble/ciphers/esm/cryptoNode.d.ts.map +1 -0
  248. package/node_modules/@noble/ciphers/esm/cryptoNode.js +15 -0
  249. package/node_modules/@noble/ciphers/esm/cryptoNode.js.map +1 -0
  250. package/node_modules/@noble/ciphers/esm/ff1.d.ts +9 -0
  251. package/node_modules/@noble/ciphers/esm/ff1.d.ts.map +1 -0
  252. package/node_modules/@noble/ciphers/esm/ff1.js +160 -0
  253. package/node_modules/@noble/ciphers/esm/ff1.js.map +1 -0
  254. package/node_modules/@noble/ciphers/esm/index.d.ts +2 -0
  255. package/node_modules/@noble/ciphers/esm/index.d.ts.map +1 -0
  256. package/node_modules/@noble/ciphers/esm/index.js +28 -0
  257. package/node_modules/@noble/ciphers/esm/index.js.map +1 -0
  258. package/node_modules/@noble/ciphers/esm/package.json +10 -0
  259. package/node_modules/@noble/ciphers/esm/salsa.d.ts +33 -0
  260. package/node_modules/@noble/ciphers/esm/salsa.d.ts.map +1 -0
  261. package/node_modules/@noble/ciphers/esm/salsa.js +201 -0
  262. package/node_modules/@noble/ciphers/esm/salsa.js.map +1 -0
  263. package/node_modules/@noble/ciphers/esm/utils.d.ts +155 -0
  264. package/node_modules/@noble/ciphers/esm/utils.d.ts.map +1 -0
  265. package/node_modules/@noble/ciphers/esm/utils.js +339 -0
  266. package/node_modules/@noble/ciphers/esm/utils.js.map +1 -0
  267. package/node_modules/@noble/ciphers/esm/webcrypto.d.ts +31 -0
  268. package/node_modules/@noble/ciphers/esm/webcrypto.d.ts.map +1 -0
  269. package/node_modules/@noble/ciphers/esm/webcrypto.js +135 -0
  270. package/node_modules/@noble/ciphers/esm/webcrypto.js.map +1 -0
  271. package/node_modules/@noble/ciphers/ff1.d.ts +9 -0
  272. package/node_modules/@noble/ciphers/ff1.d.ts.map +1 -0
  273. package/node_modules/@noble/ciphers/ff1.js +164 -0
  274. package/node_modules/@noble/ciphers/ff1.js.map +1 -0
  275. package/node_modules/@noble/ciphers/index.d.ts +1 -0
  276. package/node_modules/@noble/ciphers/index.d.ts.map +1 -0
  277. package/node_modules/@noble/ciphers/index.js +28 -0
  278. package/node_modules/@noble/ciphers/index.js.map +1 -0
  279. package/node_modules/@noble/ciphers/package.json +177 -0
  280. package/node_modules/@noble/ciphers/salsa.d.ts +33 -0
  281. package/node_modules/@noble/ciphers/salsa.d.ts.map +1 -0
  282. package/node_modules/@noble/ciphers/salsa.js +206 -0
  283. package/node_modules/@noble/ciphers/salsa.js.map +1 -0
  284. package/node_modules/@noble/ciphers/src/_arx.ts +224 -0
  285. package/node_modules/@noble/ciphers/src/_assert.ts +25 -0
  286. package/node_modules/@noble/ciphers/src/_micro.ts +311 -0
  287. package/node_modules/@noble/ciphers/src/_poly1305.ts +305 -0
  288. package/node_modules/@noble/ciphers/src/_polyval.ts +267 -0
  289. package/node_modules/@noble/ciphers/src/aes.ts +1016 -0
  290. package/node_modules/@noble/ciphers/src/chacha.ts +290 -0
  291. package/node_modules/@noble/ciphers/src/crypto.ts +9 -0
  292. package/node_modules/@noble/ciphers/src/cryptoNode.ts +15 -0
  293. package/node_modules/@noble/ciphers/src/ff1.ts +162 -0
  294. package/node_modules/@noble/ciphers/src/index.ts +26 -0
  295. package/node_modules/@noble/ciphers/src/package.json +3 -0
  296. package/node_modules/@noble/ciphers/src/salsa.ts +189 -0
  297. package/node_modules/@noble/ciphers/src/utils.ts +453 -0
  298. package/node_modules/@noble/ciphers/src/webcrypto.ts +169 -0
  299. package/node_modules/@noble/ciphers/utils.d.ts +155 -0
  300. package/node_modules/@noble/ciphers/utils.d.ts.map +1 -0
  301. package/node_modules/@noble/ciphers/utils.js +374 -0
  302. package/node_modules/@noble/ciphers/utils.js.map +1 -0
  303. package/node_modules/@noble/ciphers/webcrypto.d.ts +31 -0
  304. package/node_modules/@noble/ciphers/webcrypto.d.ts.map +1 -0
  305. package/node_modules/@noble/ciphers/webcrypto.js +141 -0
  306. package/node_modules/@noble/ciphers/webcrypto.js.map +1 -0
  307. package/node_modules/@noble/curves/LICENSE +21 -0
  308. package/node_modules/@noble/curves/README.md +1009 -0
  309. package/node_modules/@noble/curves/_shortw_utils.d.ts +19 -0
  310. package/node_modules/@noble/curves/_shortw_utils.d.ts.map +1 -0
  311. package/node_modules/@noble/curves/_shortw_utils.js +20 -0
  312. package/node_modules/@noble/curves/_shortw_utils.js.map +1 -0
  313. package/node_modules/@noble/curves/abstract/bls.d.ts +190 -0
  314. package/node_modules/@noble/curves/abstract/bls.d.ts.map +1 -0
  315. package/node_modules/@noble/curves/abstract/bls.js +411 -0
  316. package/node_modules/@noble/curves/abstract/bls.js.map +1 -0
  317. package/node_modules/@noble/curves/abstract/curve.d.ts +231 -0
  318. package/node_modules/@noble/curves/abstract/curve.d.ts.map +1 -0
  319. package/node_modules/@noble/curves/abstract/curve.js +476 -0
  320. package/node_modules/@noble/curves/abstract/curve.js.map +1 -0
  321. package/node_modules/@noble/curves/abstract/edwards.d.ts +243 -0
  322. package/node_modules/@noble/curves/abstract/edwards.d.ts.map +1 -0
  323. package/node_modules/@noble/curves/abstract/edwards.js +634 -0
  324. package/node_modules/@noble/curves/abstract/edwards.js.map +1 -0
  325. package/node_modules/@noble/curves/abstract/fft.d.ts +122 -0
  326. package/node_modules/@noble/curves/abstract/fft.d.ts.map +1 -0
  327. package/node_modules/@noble/curves/abstract/fft.js +438 -0
  328. package/node_modules/@noble/curves/abstract/fft.js.map +1 -0
  329. package/node_modules/@noble/curves/abstract/hash-to-curve.d.ts +102 -0
  330. package/node_modules/@noble/curves/abstract/hash-to-curve.d.ts.map +1 -0
  331. package/node_modules/@noble/curves/abstract/hash-to-curve.js +211 -0
  332. package/node_modules/@noble/curves/abstract/hash-to-curve.js.map +1 -0
  333. package/node_modules/@noble/curves/abstract/modular.d.ts +171 -0
  334. package/node_modules/@noble/curves/abstract/modular.d.ts.map +1 -0
  335. package/node_modules/@noble/curves/abstract/modular.js +554 -0
  336. package/node_modules/@noble/curves/abstract/modular.js.map +1 -0
  337. package/node_modules/@noble/curves/abstract/montgomery.d.ts +30 -0
  338. package/node_modules/@noble/curves/abstract/montgomery.d.ts.map +1 -0
  339. package/node_modules/@noble/curves/abstract/montgomery.js +160 -0
  340. package/node_modules/@noble/curves/abstract/montgomery.js.map +1 -0
  341. package/node_modules/@noble/curves/abstract/poseidon.d.ts +68 -0
  342. package/node_modules/@noble/curves/abstract/poseidon.d.ts.map +1 -0
  343. package/node_modules/@noble/curves/abstract/poseidon.js +305 -0
  344. package/node_modules/@noble/curves/abstract/poseidon.js.map +1 -0
  345. package/node_modules/@noble/curves/abstract/tower.d.ts +95 -0
  346. package/node_modules/@noble/curves/abstract/tower.d.ts.map +1 -0
  347. package/node_modules/@noble/curves/abstract/tower.js +718 -0
  348. package/node_modules/@noble/curves/abstract/tower.js.map +1 -0
  349. package/node_modules/@noble/curves/abstract/utils.d.ts +78 -0
  350. package/node_modules/@noble/curves/abstract/utils.d.ts.map +1 -0
  351. package/node_modules/@noble/curves/abstract/utils.js +73 -0
  352. package/node_modules/@noble/curves/abstract/utils.js.map +1 -0
  353. package/node_modules/@noble/curves/abstract/weierstrass.d.ts +416 -0
  354. package/node_modules/@noble/curves/abstract/weierstrass.d.ts.map +1 -0
  355. package/node_modules/@noble/curves/abstract/weierstrass.js +1427 -0
  356. package/node_modules/@noble/curves/abstract/weierstrass.js.map +1 -0
  357. package/node_modules/@noble/curves/bls12-381.d.ts +16 -0
  358. package/node_modules/@noble/curves/bls12-381.d.ts.map +1 -0
  359. package/node_modules/@noble/curves/bls12-381.js +708 -0
  360. package/node_modules/@noble/curves/bls12-381.js.map +1 -0
  361. package/node_modules/@noble/curves/bn254.d.ts +18 -0
  362. package/node_modules/@noble/curves/bn254.d.ts.map +1 -0
  363. package/node_modules/@noble/curves/bn254.js +218 -0
  364. package/node_modules/@noble/curves/bn254.js.map +1 -0
  365. package/node_modules/@noble/curves/ed25519.d.ts +106 -0
  366. package/node_modules/@noble/curves/ed25519.d.ts.map +1 -0
  367. package/node_modules/@noble/curves/ed25519.js +472 -0
  368. package/node_modules/@noble/curves/ed25519.js.map +1 -0
  369. package/node_modules/@noble/curves/ed448.d.ts +100 -0
  370. package/node_modules/@noble/curves/ed448.d.ts.map +1 -0
  371. package/node_modules/@noble/curves/ed448.js +463 -0
  372. package/node_modules/@noble/curves/ed448.js.map +1 -0
  373. package/node_modules/@noble/curves/esm/_shortw_utils.d.ts +19 -0
  374. package/node_modules/@noble/curves/esm/_shortw_utils.d.ts.map +1 -0
  375. package/node_modules/@noble/curves/esm/_shortw_utils.js +16 -0
  376. package/node_modules/@noble/curves/esm/_shortw_utils.js.map +1 -0
  377. package/node_modules/@noble/curves/esm/abstract/bls.d.ts +190 -0
  378. package/node_modules/@noble/curves/esm/abstract/bls.d.ts.map +1 -0
  379. package/node_modules/@noble/curves/esm/abstract/bls.js +408 -0
  380. package/node_modules/@noble/curves/esm/abstract/bls.js.map +1 -0
  381. package/node_modules/@noble/curves/esm/abstract/curve.d.ts +231 -0
  382. package/node_modules/@noble/curves/esm/abstract/curve.d.ts.map +1 -0
  383. package/node_modules/@noble/curves/esm/abstract/curve.js +465 -0
  384. package/node_modules/@noble/curves/esm/abstract/curve.js.map +1 -0
  385. package/node_modules/@noble/curves/esm/abstract/edwards.d.ts +243 -0
  386. package/node_modules/@noble/curves/esm/abstract/edwards.d.ts.map +1 -0
  387. package/node_modules/@noble/curves/esm/abstract/edwards.js +627 -0
  388. package/node_modules/@noble/curves/esm/abstract/edwards.js.map +1 -0
  389. package/node_modules/@noble/curves/esm/abstract/fft.d.ts +122 -0
  390. package/node_modules/@noble/curves/esm/abstract/fft.d.ts.map +1 -0
  391. package/node_modules/@noble/curves/esm/abstract/fft.js +425 -0
  392. package/node_modules/@noble/curves/esm/abstract/fft.js.map +1 -0
  393. package/node_modules/@noble/curves/esm/abstract/hash-to-curve.d.ts +102 -0
  394. package/node_modules/@noble/curves/esm/abstract/hash-to-curve.d.ts.map +1 -0
  395. package/node_modules/@noble/curves/esm/abstract/hash-to-curve.js +203 -0
  396. package/node_modules/@noble/curves/esm/abstract/hash-to-curve.js.map +1 -0
  397. package/node_modules/@noble/curves/esm/abstract/modular.d.ts +171 -0
  398. package/node_modules/@noble/curves/esm/abstract/modular.d.ts.map +1 -0
  399. package/node_modules/@noble/curves/esm/abstract/modular.js +530 -0
  400. package/node_modules/@noble/curves/esm/abstract/modular.js.map +1 -0
  401. package/node_modules/@noble/curves/esm/abstract/montgomery.d.ts +30 -0
  402. package/node_modules/@noble/curves/esm/abstract/montgomery.d.ts.map +1 -0
  403. package/node_modules/@noble/curves/esm/abstract/montgomery.js +157 -0
  404. package/node_modules/@noble/curves/esm/abstract/montgomery.js.map +1 -0
  405. package/node_modules/@noble/curves/esm/abstract/poseidon.d.ts +68 -0
  406. package/node_modules/@noble/curves/esm/abstract/poseidon.d.ts.map +1 -0
  407. package/node_modules/@noble/curves/esm/abstract/poseidon.js +296 -0
  408. package/node_modules/@noble/curves/esm/abstract/poseidon.js.map +1 -0
  409. package/node_modules/@noble/curves/esm/abstract/tower.d.ts +95 -0
  410. package/node_modules/@noble/curves/esm/abstract/tower.d.ts.map +1 -0
  411. package/node_modules/@noble/curves/esm/abstract/tower.js +714 -0
  412. package/node_modules/@noble/curves/esm/abstract/tower.js.map +1 -0
  413. package/node_modules/@noble/curves/esm/abstract/utils.d.ts +78 -0
  414. package/node_modules/@noble/curves/esm/abstract/utils.d.ts.map +1 -0
  415. package/node_modules/@noble/curves/esm/abstract/utils.js +70 -0
  416. package/node_modules/@noble/curves/esm/abstract/utils.js.map +1 -0
  417. package/node_modules/@noble/curves/esm/abstract/weierstrass.d.ts +416 -0
  418. package/node_modules/@noble/curves/esm/abstract/weierstrass.d.ts.map +1 -0
  419. package/node_modules/@noble/curves/esm/abstract/weierstrass.js +1413 -0
  420. package/node_modules/@noble/curves/esm/abstract/weierstrass.js.map +1 -0
  421. package/node_modules/@noble/curves/esm/bls12-381.d.ts +16 -0
  422. package/node_modules/@noble/curves/esm/bls12-381.d.ts.map +1 -0
  423. package/node_modules/@noble/curves/esm/bls12-381.js +705 -0
  424. package/node_modules/@noble/curves/esm/bls12-381.js.map +1 -0
  425. package/node_modules/@noble/curves/esm/bn254.d.ts +18 -0
  426. package/node_modules/@noble/curves/esm/bn254.d.ts.map +1 -0
  427. package/node_modules/@noble/curves/esm/bn254.js +214 -0
  428. package/node_modules/@noble/curves/esm/bn254.js.map +1 -0
  429. package/node_modules/@noble/curves/esm/ed25519.d.ts +106 -0
  430. package/node_modules/@noble/curves/esm/ed25519.d.ts.map +1 -0
  431. package/node_modules/@noble/curves/esm/ed25519.js +467 -0
  432. package/node_modules/@noble/curves/esm/ed25519.js.map +1 -0
  433. package/node_modules/@noble/curves/esm/ed448.d.ts +100 -0
  434. package/node_modules/@noble/curves/esm/ed448.d.ts.map +1 -0
  435. package/node_modules/@noble/curves/esm/ed448.js +459 -0
  436. package/node_modules/@noble/curves/esm/ed448.js.map +1 -0
  437. package/node_modules/@noble/curves/esm/index.d.ts +2 -0
  438. package/node_modules/@noble/curves/esm/index.d.ts.map +1 -0
  439. package/node_modules/@noble/curves/esm/index.js +17 -0
  440. package/node_modules/@noble/curves/esm/index.js.map +1 -0
  441. package/node_modules/@noble/curves/esm/jubjub.d.ts +12 -0
  442. package/node_modules/@noble/curves/esm/jubjub.d.ts.map +1 -0
  443. package/node_modules/@noble/curves/esm/jubjub.js +12 -0
  444. package/node_modules/@noble/curves/esm/jubjub.js.map +1 -0
  445. package/node_modules/@noble/curves/esm/misc.d.ts +19 -0
  446. package/node_modules/@noble/curves/esm/misc.d.ts.map +1 -0
  447. package/node_modules/@noble/curves/esm/misc.js +109 -0
  448. package/node_modules/@noble/curves/esm/misc.js.map +1 -0
  449. package/node_modules/@noble/curves/esm/nist.d.ts +21 -0
  450. package/node_modules/@noble/curves/esm/nist.d.ts.map +1 -0
  451. package/node_modules/@noble/curves/esm/nist.js +132 -0
  452. package/node_modules/@noble/curves/esm/nist.js.map +1 -0
  453. package/node_modules/@noble/curves/esm/p256.d.ts +16 -0
  454. package/node_modules/@noble/curves/esm/p256.d.ts.map +1 -0
  455. package/node_modules/@noble/curves/esm/p256.js +16 -0
  456. package/node_modules/@noble/curves/esm/p256.js.map +1 -0
  457. package/node_modules/@noble/curves/esm/p384.d.ts +16 -0
  458. package/node_modules/@noble/curves/esm/p384.d.ts.map +1 -0
  459. package/node_modules/@noble/curves/esm/p384.js +16 -0
  460. package/node_modules/@noble/curves/esm/p384.js.map +1 -0
  461. package/node_modules/@noble/curves/esm/p521.d.ts +16 -0
  462. package/node_modules/@noble/curves/esm/p521.d.ts.map +1 -0
  463. package/node_modules/@noble/curves/esm/p521.js +16 -0
  464. package/node_modules/@noble/curves/esm/p521.js.map +1 -0
  465. package/node_modules/@noble/curves/esm/package.json +4 -0
  466. package/node_modules/@noble/curves/esm/pasta.d.ts +10 -0
  467. package/node_modules/@noble/curves/esm/pasta.d.ts.map +1 -0
  468. package/node_modules/@noble/curves/esm/pasta.js +10 -0
  469. package/node_modules/@noble/curves/esm/pasta.js.map +1 -0
  470. package/node_modules/@noble/curves/esm/secp256k1.d.ts +89 -0
  471. package/node_modules/@noble/curves/esm/secp256k1.d.ts.map +1 -0
  472. package/node_modules/@noble/curves/esm/secp256k1.js +294 -0
  473. package/node_modules/@noble/curves/esm/secp256k1.js.map +1 -0
  474. package/node_modules/@noble/curves/esm/utils.d.ts +110 -0
  475. package/node_modules/@noble/curves/esm/utils.d.ts.map +1 -0
  476. package/node_modules/@noble/curves/esm/utils.js +322 -0
  477. package/node_modules/@noble/curves/esm/utils.js.map +1 -0
  478. package/node_modules/@noble/curves/index.d.ts +1 -0
  479. package/node_modules/@noble/curves/index.d.ts.map +1 -0
  480. package/node_modules/@noble/curves/index.js +17 -0
  481. package/node_modules/@noble/curves/index.js.map +1 -0
  482. package/node_modules/@noble/curves/jubjub.d.ts +12 -0
  483. package/node_modules/@noble/curves/jubjub.d.ts.map +1 -0
  484. package/node_modules/@noble/curves/jubjub.js +15 -0
  485. package/node_modules/@noble/curves/jubjub.js.map +1 -0
  486. package/node_modules/@noble/curves/misc.d.ts +19 -0
  487. package/node_modules/@noble/curves/misc.d.ts.map +1 -0
  488. package/node_modules/@noble/curves/misc.js +114 -0
  489. package/node_modules/@noble/curves/misc.js.map +1 -0
  490. package/node_modules/@noble/curves/nist.d.ts +21 -0
  491. package/node_modules/@noble/curves/nist.d.ts.map +1 -0
  492. package/node_modules/@noble/curves/nist.js +135 -0
  493. package/node_modules/@noble/curves/nist.js.map +1 -0
  494. package/node_modules/@noble/curves/p256.d.ts +16 -0
  495. package/node_modules/@noble/curves/p256.d.ts.map +1 -0
  496. package/node_modules/@noble/curves/p256.js +13 -0
  497. package/node_modules/@noble/curves/p256.js.map +1 -0
  498. package/node_modules/@noble/curves/p384.d.ts +16 -0
  499. package/node_modules/@noble/curves/p384.d.ts.map +1 -0
  500. package/node_modules/@noble/curves/p384.js +13 -0
  501. package/node_modules/@noble/curves/p384.js.map +1 -0
  502. package/node_modules/@noble/curves/p521.d.ts +16 -0
  503. package/node_modules/@noble/curves/p521.d.ts.map +1 -0
  504. package/node_modules/@noble/curves/p521.js +13 -0
  505. package/node_modules/@noble/curves/p521.js.map +1 -0
  506. package/node_modules/@noble/curves/package.json +295 -0
  507. package/node_modules/@noble/curves/pasta.d.ts +10 -0
  508. package/node_modules/@noble/curves/pasta.d.ts.map +1 -0
  509. package/node_modules/@noble/curves/pasta.js +13 -0
  510. package/node_modules/@noble/curves/pasta.js.map +1 -0
  511. package/node_modules/@noble/curves/secp256k1.d.ts +89 -0
  512. package/node_modules/@noble/curves/secp256k1.d.ts.map +1 -0
  513. package/node_modules/@noble/curves/secp256k1.js +297 -0
  514. package/node_modules/@noble/curves/secp256k1.js.map +1 -0
  515. package/node_modules/@noble/curves/src/_shortw_utils.ts +21 -0
  516. package/node_modules/@noble/curves/src/abstract/bls.ts +747 -0
  517. package/node_modules/@noble/curves/src/abstract/curve.ts +692 -0
  518. package/node_modules/@noble/curves/src/abstract/edwards.ts +914 -0
  519. package/node_modules/@noble/curves/src/abstract/fft.ts +519 -0
  520. package/node_modules/@noble/curves/src/abstract/hash-to-curve.ts +306 -0
  521. package/node_modules/@noble/curves/src/abstract/modular.ts +605 -0
  522. package/node_modules/@noble/curves/src/abstract/montgomery.ts +194 -0
  523. package/node_modules/@noble/curves/src/abstract/poseidon.ts +335 -0
  524. package/node_modules/@noble/curves/src/abstract/tower.ts +867 -0
  525. package/node_modules/@noble/curves/src/abstract/utils.ts +80 -0
  526. package/node_modules/@noble/curves/src/abstract/weierstrass.ts +1884 -0
  527. package/node_modules/@noble/curves/src/bls12-381.ts +781 -0
  528. package/node_modules/@noble/curves/src/bn254.ts +243 -0
  529. package/node_modules/@noble/curves/src/ed25519.ts +554 -0
  530. package/node_modules/@noble/curves/src/ed448.ts +552 -0
  531. package/node_modules/@noble/curves/src/index.ts +15 -0
  532. package/node_modules/@noble/curves/src/jubjub.ts +12 -0
  533. package/node_modules/@noble/curves/src/misc.ts +124 -0
  534. package/node_modules/@noble/curves/src/nist.ts +197 -0
  535. package/node_modules/@noble/curves/src/p256.ts +15 -0
  536. package/node_modules/@noble/curves/src/p384.ts +15 -0
  537. package/node_modules/@noble/curves/src/p521.ts +15 -0
  538. package/node_modules/@noble/curves/src/package.json +3 -0
  539. package/node_modules/@noble/curves/src/pasta.ts +9 -0
  540. package/node_modules/@noble/curves/src/secp256k1.ts +362 -0
  541. package/node_modules/@noble/curves/src/utils.ts +376 -0
  542. package/node_modules/@noble/curves/utils.d.ts +110 -0
  543. package/node_modules/@noble/curves/utils.d.ts.map +1 -0
  544. package/node_modules/@noble/curves/utils.js +360 -0
  545. package/node_modules/@noble/curves/utils.js.map +1 -0
  546. package/node_modules/@noble/hashes/LICENSE +21 -0
  547. package/node_modules/@noble/hashes/README.md +521 -0
  548. package/node_modules/@noble/hashes/_assert.d.ts +17 -0
  549. package/node_modules/@noble/hashes/_assert.d.ts.map +1 -0
  550. package/node_modules/@noble/hashes/_assert.js +18 -0
  551. package/node_modules/@noble/hashes/_assert.js.map +1 -0
  552. package/node_modules/@noble/hashes/_blake.d.ts +14 -0
  553. package/node_modules/@noble/hashes/_blake.d.ts.map +1 -0
  554. package/node_modules/@noble/hashes/_blake.js +50 -0
  555. package/node_modules/@noble/hashes/_blake.js.map +1 -0
  556. package/node_modules/@noble/hashes/_md.d.ts +51 -0
  557. package/node_modules/@noble/hashes/_md.d.ts.map +1 -0
  558. package/node_modules/@noble/hashes/_md.js +162 -0
  559. package/node_modules/@noble/hashes/_md.js.map +1 -0
  560. package/node_modules/@noble/hashes/_u64.d.ts +55 -0
  561. package/node_modules/@noble/hashes/_u64.d.ts.map +1 -0
  562. package/node_modules/@noble/hashes/_u64.js +90 -0
  563. package/node_modules/@noble/hashes/_u64.js.map +1 -0
  564. package/node_modules/@noble/hashes/argon2.d.ts +32 -0
  565. package/node_modules/@noble/hashes/argon2.d.ts.map +1 -0
  566. package/node_modules/@noble/hashes/argon2.js +401 -0
  567. package/node_modules/@noble/hashes/argon2.js.map +1 -0
  568. package/node_modules/@noble/hashes/blake1.d.ts +106 -0
  569. package/node_modules/@noble/hashes/blake1.d.ts.map +1 -0
  570. package/node_modules/@noble/hashes/blake1.js +459 -0
  571. package/node_modules/@noble/hashes/blake1.js.map +1 -0
  572. package/node_modules/@noble/hashes/blake2.d.ts +116 -0
  573. package/node_modules/@noble/hashes/blake2.d.ts.map +1 -0
  574. package/node_modules/@noble/hashes/blake2.js +420 -0
  575. package/node_modules/@noble/hashes/blake2.js.map +1 -0
  576. package/node_modules/@noble/hashes/blake2b.d.ts +11 -0
  577. package/node_modules/@noble/hashes/blake2b.d.ts.map +1 -0
  578. package/node_modules/@noble/hashes/blake2b.js +14 -0
  579. package/node_modules/@noble/hashes/blake2b.js.map +1 -0
  580. package/node_modules/@noble/hashes/blake2s.d.ts +20 -0
  581. package/node_modules/@noble/hashes/blake2s.d.ts.map +1 -0
  582. package/node_modules/@noble/hashes/blake2s.js +24 -0
  583. package/node_modules/@noble/hashes/blake2s.js.map +1 -0
  584. package/node_modules/@noble/hashes/blake3.d.ts +54 -0
  585. package/node_modules/@noble/hashes/blake3.d.ts.map +1 -0
  586. package/node_modules/@noble/hashes/blake3.js +255 -0
  587. package/node_modules/@noble/hashes/blake3.js.map +1 -0
  588. package/node_modules/@noble/hashes/crypto.d.ts +2 -0
  589. package/node_modules/@noble/hashes/crypto.d.ts.map +1 -0
  590. package/node_modules/@noble/hashes/crypto.js +5 -0
  591. package/node_modules/@noble/hashes/crypto.js.map +1 -0
  592. package/node_modules/@noble/hashes/cryptoNode.d.ts +2 -0
  593. package/node_modules/@noble/hashes/cryptoNode.d.ts.map +1 -0
  594. package/node_modules/@noble/hashes/cryptoNode.js +18 -0
  595. package/node_modules/@noble/hashes/cryptoNode.js.map +1 -0
  596. package/node_modules/@noble/hashes/eskdf.d.ts +47 -0
  597. package/node_modules/@noble/hashes/eskdf.d.ts.map +1 -0
  598. package/node_modules/@noble/hashes/eskdf.js +166 -0
  599. package/node_modules/@noble/hashes/eskdf.js.map +1 -0
  600. package/node_modules/@noble/hashes/esm/_assert.d.ts +17 -0
  601. package/node_modules/@noble/hashes/esm/_assert.d.ts.map +1 -0
  602. package/node_modules/@noble/hashes/esm/_assert.js +15 -0
  603. package/node_modules/@noble/hashes/esm/_assert.js.map +1 -0
  604. package/node_modules/@noble/hashes/esm/_blake.d.ts +14 -0
  605. package/node_modules/@noble/hashes/esm/_blake.d.ts.map +1 -0
  606. package/node_modules/@noble/hashes/esm/_blake.js +45 -0
  607. package/node_modules/@noble/hashes/esm/_blake.js.map +1 -0
  608. package/node_modules/@noble/hashes/esm/_md.d.ts +51 -0
  609. package/node_modules/@noble/hashes/esm/_md.d.ts.map +1 -0
  610. package/node_modules/@noble/hashes/esm/_md.js +155 -0
  611. package/node_modules/@noble/hashes/esm/_md.js.map +1 -0
  612. package/node_modules/@noble/hashes/esm/_u64.d.ts +55 -0
  613. package/node_modules/@noble/hashes/esm/_u64.d.ts.map +1 -0
  614. package/node_modules/@noble/hashes/esm/_u64.js +67 -0
  615. package/node_modules/@noble/hashes/esm/_u64.js.map +1 -0
  616. package/node_modules/@noble/hashes/esm/argon2.d.ts +32 -0
  617. package/node_modules/@noble/hashes/esm/argon2.d.ts.map +1 -0
  618. package/node_modules/@noble/hashes/esm/argon2.js +392 -0
  619. package/node_modules/@noble/hashes/esm/argon2.js.map +1 -0
  620. package/node_modules/@noble/hashes/esm/blake1.d.ts +106 -0
  621. package/node_modules/@noble/hashes/esm/blake1.d.ts.map +1 -0
  622. package/node_modules/@noble/hashes/esm/blake1.js +452 -0
  623. package/node_modules/@noble/hashes/esm/blake1.js.map +1 -0
  624. package/node_modules/@noble/hashes/esm/blake2.d.ts +116 -0
  625. package/node_modules/@noble/hashes/esm/blake2.d.ts.map +1 -0
  626. package/node_modules/@noble/hashes/esm/blake2.js +413 -0
  627. package/node_modules/@noble/hashes/esm/blake2.js.map +1 -0
  628. package/node_modules/@noble/hashes/esm/blake2b.d.ts +11 -0
  629. package/node_modules/@noble/hashes/esm/blake2b.d.ts.map +1 -0
  630. package/node_modules/@noble/hashes/esm/blake2b.js +11 -0
  631. package/node_modules/@noble/hashes/esm/blake2b.js.map +1 -0
  632. package/node_modules/@noble/hashes/esm/blake2s.d.ts +20 -0
  633. package/node_modules/@noble/hashes/esm/blake2s.d.ts.map +1 -0
  634. package/node_modules/@noble/hashes/esm/blake2s.js +21 -0
  635. package/node_modules/@noble/hashes/esm/blake2s.js.map +1 -0
  636. package/node_modules/@noble/hashes/esm/blake3.d.ts +54 -0
  637. package/node_modules/@noble/hashes/esm/blake3.d.ts.map +1 -0
  638. package/node_modules/@noble/hashes/esm/blake3.js +251 -0
  639. package/node_modules/@noble/hashes/esm/blake3.js.map +1 -0
  640. package/node_modules/@noble/hashes/esm/crypto.d.ts +2 -0
  641. package/node_modules/@noble/hashes/esm/crypto.d.ts.map +1 -0
  642. package/node_modules/@noble/hashes/esm/crypto.js +2 -0
  643. package/node_modules/@noble/hashes/esm/crypto.js.map +1 -0
  644. package/node_modules/@noble/hashes/esm/cryptoNode.d.ts +2 -0
  645. package/node_modules/@noble/hashes/esm/cryptoNode.d.ts.map +1 -0
  646. package/node_modules/@noble/hashes/esm/cryptoNode.js +15 -0
  647. package/node_modules/@noble/hashes/esm/cryptoNode.js.map +1 -0
  648. package/node_modules/@noble/hashes/esm/eskdf.d.ts +47 -0
  649. package/node_modules/@noble/hashes/esm/eskdf.d.ts.map +1 -0
  650. package/node_modules/@noble/hashes/esm/eskdf.js +160 -0
  651. package/node_modules/@noble/hashes/esm/eskdf.js.map +1 -0
  652. package/node_modules/@noble/hashes/esm/hkdf.d.ts +36 -0
  653. package/node_modules/@noble/hashes/esm/hkdf.d.ts.map +1 -0
  654. package/node_modules/@noble/hashes/esm/hkdf.js +82 -0
  655. package/node_modules/@noble/hashes/esm/hkdf.js.map +1 -0
  656. package/node_modules/@noble/hashes/esm/hmac.d.ts +35 -0
  657. package/node_modules/@noble/hashes/esm/hmac.d.ts.map +1 -0
  658. package/node_modules/@noble/hashes/esm/hmac.js +86 -0
  659. package/node_modules/@noble/hashes/esm/hmac.js.map +1 -0
  660. package/node_modules/@noble/hashes/esm/index.d.ts +2 -0
  661. package/node_modules/@noble/hashes/esm/index.d.ts.map +1 -0
  662. package/node_modules/@noble/hashes/esm/index.js +33 -0
  663. package/node_modules/@noble/hashes/esm/index.js.map +1 -0
  664. package/node_modules/@noble/hashes/esm/legacy.d.ts +71 -0
  665. package/node_modules/@noble/hashes/esm/legacy.d.ts.map +1 -0
  666. package/node_modules/@noble/hashes/esm/legacy.js +281 -0
  667. package/node_modules/@noble/hashes/esm/legacy.js.map +1 -0
  668. package/node_modules/@noble/hashes/esm/package.json +10 -0
  669. package/node_modules/@noble/hashes/esm/pbkdf2.d.ts +23 -0
  670. package/node_modules/@noble/hashes/esm/pbkdf2.d.ts.map +1 -0
  671. package/node_modules/@noble/hashes/esm/pbkdf2.js +97 -0
  672. package/node_modules/@noble/hashes/esm/pbkdf2.js.map +1 -0
  673. package/node_modules/@noble/hashes/esm/ripemd160.d.ts +13 -0
  674. package/node_modules/@noble/hashes/esm/ripemd160.d.ts.map +1 -0
  675. package/node_modules/@noble/hashes/esm/ripemd160.js +13 -0
  676. package/node_modules/@noble/hashes/esm/ripemd160.js.map +1 -0
  677. package/node_modules/@noble/hashes/esm/scrypt.d.ts +34 -0
  678. package/node_modules/@noble/hashes/esm/scrypt.d.ts.map +1 -0
  679. package/node_modules/@noble/hashes/esm/scrypt.js +228 -0
  680. package/node_modules/@noble/hashes/esm/scrypt.js.map +1 -0
  681. package/node_modules/@noble/hashes/esm/sha1.d.ts +11 -0
  682. package/node_modules/@noble/hashes/esm/sha1.d.ts.map +1 -0
  683. package/node_modules/@noble/hashes/esm/sha1.js +11 -0
  684. package/node_modules/@noble/hashes/esm/sha1.js.map +1 -0
  685. package/node_modules/@noble/hashes/esm/sha2.d.ts +159 -0
  686. package/node_modules/@noble/hashes/esm/sha2.d.ts.map +1 -0
  687. package/node_modules/@noble/hashes/esm/sha2.js +375 -0
  688. package/node_modules/@noble/hashes/esm/sha2.js.map +1 -0
  689. package/node_modules/@noble/hashes/esm/sha256.d.ts +20 -0
  690. package/node_modules/@noble/hashes/esm/sha256.d.ts.map +1 -0
  691. package/node_modules/@noble/hashes/esm/sha256.js +20 -0
  692. package/node_modules/@noble/hashes/esm/sha256.js.map +1 -0
  693. package/node_modules/@noble/hashes/esm/sha3-addons.d.ts +142 -0
  694. package/node_modules/@noble/hashes/esm/sha3-addons.d.ts.map +1 -0
  695. package/node_modules/@noble/hashes/esm/sha3-addons.js +393 -0
  696. package/node_modules/@noble/hashes/esm/sha3-addons.js.map +1 -0
  697. package/node_modules/@noble/hashes/esm/sha3.d.ts +53 -0
  698. package/node_modules/@noble/hashes/esm/sha3.d.ts.map +1 -0
  699. package/node_modules/@noble/hashes/esm/sha3.js +234 -0
  700. package/node_modules/@noble/hashes/esm/sha3.js.map +1 -0
  701. package/node_modules/@noble/hashes/esm/sha512.d.ts +26 -0
  702. package/node_modules/@noble/hashes/esm/sha512.d.ts.map +1 -0
  703. package/node_modules/@noble/hashes/esm/sha512.js +26 -0
  704. package/node_modules/@noble/hashes/esm/sha512.js.map +1 -0
  705. package/node_modules/@noble/hashes/esm/utils.d.ts +161 -0
  706. package/node_modules/@noble/hashes/esm/utils.d.ts.map +1 -0
  707. package/node_modules/@noble/hashes/esm/utils.js +281 -0
  708. package/node_modules/@noble/hashes/esm/utils.js.map +1 -0
  709. package/node_modules/@noble/hashes/hkdf.d.ts +36 -0
  710. package/node_modules/@noble/hashes/hkdf.d.ts.map +1 -0
  711. package/node_modules/@noble/hashes/hkdf.js +88 -0
  712. package/node_modules/@noble/hashes/hkdf.js.map +1 -0
  713. package/node_modules/@noble/hashes/hmac.d.ts +35 -0
  714. package/node_modules/@noble/hashes/hmac.d.ts.map +1 -0
  715. package/node_modules/@noble/hashes/hmac.js +91 -0
  716. package/node_modules/@noble/hashes/hmac.js.map +1 -0
  717. package/node_modules/@noble/hashes/index.d.ts +1 -0
  718. package/node_modules/@noble/hashes/index.d.ts.map +1 -0
  719. package/node_modules/@noble/hashes/index.js +33 -0
  720. package/node_modules/@noble/hashes/index.js.map +1 -0
  721. package/node_modules/@noble/hashes/legacy.d.ts +71 -0
  722. package/node_modules/@noble/hashes/legacy.d.ts.map +1 -0
  723. package/node_modules/@noble/hashes/legacy.js +287 -0
  724. package/node_modules/@noble/hashes/legacy.js.map +1 -0
  725. package/node_modules/@noble/hashes/package.json +266 -0
  726. package/node_modules/@noble/hashes/pbkdf2.d.ts +23 -0
  727. package/node_modules/@noble/hashes/pbkdf2.d.ts.map +1 -0
  728. package/node_modules/@noble/hashes/pbkdf2.js +101 -0
  729. package/node_modules/@noble/hashes/pbkdf2.js.map +1 -0
  730. package/node_modules/@noble/hashes/ripemd160.d.ts +13 -0
  731. package/node_modules/@noble/hashes/ripemd160.d.ts.map +1 -0
  732. package/node_modules/@noble/hashes/ripemd160.js +16 -0
  733. package/node_modules/@noble/hashes/ripemd160.js.map +1 -0
  734. package/node_modules/@noble/hashes/scrypt.d.ts +34 -0
  735. package/node_modules/@noble/hashes/scrypt.d.ts.map +1 -0
  736. package/node_modules/@noble/hashes/scrypt.js +232 -0
  737. package/node_modules/@noble/hashes/scrypt.js.map +1 -0
  738. package/node_modules/@noble/hashes/sha1.d.ts +11 -0
  739. package/node_modules/@noble/hashes/sha1.d.ts.map +1 -0
  740. package/node_modules/@noble/hashes/sha1.js +14 -0
  741. package/node_modules/@noble/hashes/sha1.js.map +1 -0
  742. package/node_modules/@noble/hashes/sha2.d.ts +159 -0
  743. package/node_modules/@noble/hashes/sha2.d.ts.map +1 -0
  744. package/node_modules/@noble/hashes/sha2.js +384 -0
  745. package/node_modules/@noble/hashes/sha2.js.map +1 -0
  746. package/node_modules/@noble/hashes/sha256.d.ts +20 -0
  747. package/node_modules/@noble/hashes/sha256.d.ts.map +1 -0
  748. package/node_modules/@noble/hashes/sha256.js +23 -0
  749. package/node_modules/@noble/hashes/sha256.js.map +1 -0
  750. package/node_modules/@noble/hashes/sha3-addons.d.ts +142 -0
  751. package/node_modules/@noble/hashes/sha3-addons.d.ts.map +1 -0
  752. package/node_modules/@noble/hashes/sha3-addons.js +402 -0
  753. package/node_modules/@noble/hashes/sha3-addons.js.map +1 -0
  754. package/node_modules/@noble/hashes/sha3.d.ts +53 -0
  755. package/node_modules/@noble/hashes/sha3.d.ts.map +1 -0
  756. package/node_modules/@noble/hashes/sha3.js +239 -0
  757. package/node_modules/@noble/hashes/sha3.js.map +1 -0
  758. package/node_modules/@noble/hashes/sha512.d.ts +26 -0
  759. package/node_modules/@noble/hashes/sha512.d.ts.map +1 -0
  760. package/node_modules/@noble/hashes/sha512.js +29 -0
  761. package/node_modules/@noble/hashes/sha512.js.map +1 -0
  762. package/node_modules/@noble/hashes/src/_assert.ts +22 -0
  763. package/node_modules/@noble/hashes/src/_blake.ts +50 -0
  764. package/node_modules/@noble/hashes/src/_md.ts +176 -0
  765. package/node_modules/@noble/hashes/src/_u64.ts +91 -0
  766. package/node_modules/@noble/hashes/src/argon2.ts +497 -0
  767. package/node_modules/@noble/hashes/src/blake1.ts +534 -0
  768. package/node_modules/@noble/hashes/src/blake2.ts +486 -0
  769. package/node_modules/@noble/hashes/src/blake2b.ts +10 -0
  770. package/node_modules/@noble/hashes/src/blake2s.ts +20 -0
  771. package/node_modules/@noble/hashes/src/blake3.ts +272 -0
  772. package/node_modules/@noble/hashes/src/crypto.ts +9 -0
  773. package/node_modules/@noble/hashes/src/cryptoNode.ts +15 -0
  774. package/node_modules/@noble/hashes/src/eskdf.ts +187 -0
  775. package/node_modules/@noble/hashes/src/hkdf.ts +88 -0
  776. package/node_modules/@noble/hashes/src/hmac.ts +94 -0
  777. package/node_modules/@noble/hashes/src/index.ts +31 -0
  778. package/node_modules/@noble/hashes/src/legacy.ts +293 -0
  779. package/node_modules/@noble/hashes/src/pbkdf2.ts +122 -0
  780. package/node_modules/@noble/hashes/src/ripemd160.ts +12 -0
  781. package/node_modules/@noble/hashes/src/scrypt.ts +257 -0
  782. package/node_modules/@noble/hashes/src/sha1.ts +10 -0
  783. package/node_modules/@noble/hashes/src/sha2.ts +402 -0
  784. package/node_modules/@noble/hashes/src/sha256.ts +24 -0
  785. package/node_modules/@noble/hashes/src/sha3-addons.ts +499 -0
  786. package/node_modules/@noble/hashes/src/sha3.ts +258 -0
  787. package/node_modules/@noble/hashes/src/sha512.ts +34 -0
  788. package/node_modules/@noble/hashes/src/utils.ts +395 -0
  789. package/node_modules/@noble/hashes/utils.d.ts +161 -0
  790. package/node_modules/@noble/hashes/utils.d.ts.map +1 -0
  791. package/node_modules/@noble/hashes/utils.js +313 -0
  792. package/node_modules/@noble/hashes/utils.js.map +1 -0
  793. package/node_modules/ajv/.runkit_example.js +23 -0
  794. package/node_modules/ajv/LICENSE +22 -0
  795. package/node_modules/ajv/README.md +207 -0
  796. package/node_modules/ajv/dist/2019.d.ts +19 -0
  797. package/node_modules/ajv/dist/2019.js +61 -0
  798. package/node_modules/ajv/dist/2019.js.map +1 -0
  799. package/node_modules/ajv/dist/2020.d.ts +19 -0
  800. package/node_modules/ajv/dist/2020.js +55 -0
  801. package/node_modules/ajv/dist/2020.js.map +1 -0
  802. package/node_modules/ajv/dist/ajv.d.ts +18 -0
  803. package/node_modules/ajv/dist/ajv.js +50 -0
  804. package/node_modules/ajv/dist/ajv.js.map +1 -0
  805. package/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
  806. package/node_modules/ajv/dist/compile/codegen/code.js +156 -0
  807. package/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
  808. package/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
  809. package/node_modules/ajv/dist/compile/codegen/index.js +697 -0
  810. package/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
  811. package/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
  812. package/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
  813. package/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
  814. package/node_modules/ajv/dist/compile/errors.d.ts +13 -0
  815. package/node_modules/ajv/dist/compile/errors.js +123 -0
  816. package/node_modules/ajv/dist/compile/errors.js.map +1 -0
  817. package/node_modules/ajv/dist/compile/index.d.ts +80 -0
  818. package/node_modules/ajv/dist/compile/index.js +242 -0
  819. package/node_modules/ajv/dist/compile/index.js.map +1 -0
  820. package/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
  821. package/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
  822. package/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
  823. package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
  824. package/node_modules/ajv/dist/compile/jtd/serialize.js +236 -0
  825. package/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
  826. package/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
  827. package/node_modules/ajv/dist/compile/jtd/types.js +14 -0
  828. package/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
  829. package/node_modules/ajv/dist/compile/names.d.ts +20 -0
  830. package/node_modules/ajv/dist/compile/names.js +28 -0
  831. package/node_modules/ajv/dist/compile/names.js.map +1 -0
  832. package/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
  833. package/node_modules/ajv/dist/compile/ref_error.js +12 -0
  834. package/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
  835. package/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
  836. package/node_modules/ajv/dist/compile/resolve.js +155 -0
  837. package/node_modules/ajv/dist/compile/resolve.js.map +1 -0
  838. package/node_modules/ajv/dist/compile/rules.d.ts +28 -0
  839. package/node_modules/ajv/dist/compile/rules.js +26 -0
  840. package/node_modules/ajv/dist/compile/rules.js.map +1 -0
  841. package/node_modules/ajv/dist/compile/util.d.ts +40 -0
  842. package/node_modules/ajv/dist/compile/util.js +178 -0
  843. package/node_modules/ajv/dist/compile/util.js.map +1 -0
  844. package/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
  845. package/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
  846. package/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
  847. package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
  848. package/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
  849. package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
  850. package/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
  851. package/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
  852. package/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
  853. package/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
  854. package/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
  855. package/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
  856. package/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
  857. package/node_modules/ajv/dist/compile/validate/index.js +520 -0
  858. package/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
  859. package/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
  860. package/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
  861. package/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
  862. package/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
  863. package/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
  864. package/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
  865. package/node_modules/ajv/dist/core.d.ts +174 -0
  866. package/node_modules/ajv/dist/core.js +618 -0
  867. package/node_modules/ajv/dist/core.js.map +1 -0
  868. package/node_modules/ajv/dist/jtd.d.ts +47 -0
  869. package/node_modules/ajv/dist/jtd.js +72 -0
  870. package/node_modules/ajv/dist/jtd.js.map +1 -0
  871. package/node_modules/ajv/dist/refs/data.json +13 -0
  872. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
  873. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
  874. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
  875. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
  876. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
  877. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
  878. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
  879. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  880. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
  881. package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
  882. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
  883. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
  884. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
  885. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
  886. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
  887. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
  888. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  889. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  890. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  891. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
  892. package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
  893. package/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
  894. package/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
  895. package/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
  896. package/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
  897. package/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
  898. package/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
  899. package/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
  900. package/node_modules/ajv/dist/runtime/equal.js +7 -0
  901. package/node_modules/ajv/dist/runtime/equal.js.map +1 -0
  902. package/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
  903. package/node_modules/ajv/dist/runtime/parseJson.js +185 -0
  904. package/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
  905. package/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
  906. package/node_modules/ajv/dist/runtime/quote.js +30 -0
  907. package/node_modules/ajv/dist/runtime/quote.js.map +1 -0
  908. package/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
  909. package/node_modules/ajv/dist/runtime/re2.js +6 -0
  910. package/node_modules/ajv/dist/runtime/re2.js.map +1 -0
  911. package/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
  912. package/node_modules/ajv/dist/runtime/timestamp.js +42 -0
  913. package/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
  914. package/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
  915. package/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
  916. package/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
  917. package/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
  918. package/node_modules/ajv/dist/runtime/uri.js +6 -0
  919. package/node_modules/ajv/dist/runtime/uri.js.map +1 -0
  920. package/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
  921. package/node_modules/ajv/dist/runtime/validation_error.js +11 -0
  922. package/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
  923. package/node_modules/ajv/dist/standalone/index.d.ts +6 -0
  924. package/node_modules/ajv/dist/standalone/index.js +90 -0
  925. package/node_modules/ajv/dist/standalone/index.js.map +1 -0
  926. package/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
  927. package/node_modules/ajv/dist/standalone/instance.js +35 -0
  928. package/node_modules/ajv/dist/standalone/instance.js.map +1 -0
  929. package/node_modules/ajv/dist/types/index.d.ts +183 -0
  930. package/node_modules/ajv/dist/types/index.js +3 -0
  931. package/node_modules/ajv/dist/types/index.js.map +1 -0
  932. package/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
  933. package/node_modules/ajv/dist/types/json-schema.js +3 -0
  934. package/node_modules/ajv/dist/types/json-schema.js.map +1 -0
  935. package/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
  936. package/node_modules/ajv/dist/types/jtd-schema.js +3 -0
  937. package/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
  938. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
  939. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
  940. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
  941. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
  942. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
  943. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
  944. package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
  945. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
  946. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
  947. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
  948. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
  949. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
  950. package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
  951. package/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
  952. package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
  953. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
  954. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
  955. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
  956. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
  957. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
  958. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
  959. package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
  960. package/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
  961. package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
  962. package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
  963. package/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
  964. package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
  965. package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
  966. package/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
  967. package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
  968. package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
  969. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
  970. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
  971. package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
  972. package/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
  973. package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
  974. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
  975. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
  976. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
  977. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
  978. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
  979. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
  980. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
  981. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
  982. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
  983. package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
  984. package/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
  985. package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
  986. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
  987. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
  988. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
  989. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
  990. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
  991. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
  992. package/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
  993. package/node_modules/ajv/dist/vocabularies/code.js +131 -0
  994. package/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
  995. package/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
  996. package/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
  997. package/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
  998. package/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
  999. package/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
  1000. package/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
  1001. package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
  1002. package/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
  1003. package/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
  1004. package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
  1005. package/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
  1006. package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
  1007. package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
  1008. package/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
  1009. package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
  1010. package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
  1011. package/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
  1012. package/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
  1013. package/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
  1014. package/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
  1015. package/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
  1016. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
  1017. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
  1018. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
  1019. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
  1020. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
  1021. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
  1022. package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
  1023. package/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
  1024. package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
  1025. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
  1026. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
  1027. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
  1028. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
  1029. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
  1030. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
  1031. package/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
  1032. package/node_modules/ajv/dist/vocabularies/errors.js +3 -0
  1033. package/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
  1034. package/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
  1035. package/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
  1036. package/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
  1037. package/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
  1038. package/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
  1039. package/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
  1040. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
  1041. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
  1042. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
  1043. package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
  1044. package/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
  1045. package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
  1046. package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
  1047. package/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
  1048. package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
  1049. package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
  1050. package/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
  1051. package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
  1052. package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
  1053. package/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
  1054. package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
  1055. package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
  1056. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
  1057. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
  1058. package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
  1059. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
  1060. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
  1061. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
  1062. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
  1063. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
  1064. package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
  1065. package/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
  1066. package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
  1067. package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
  1068. package/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
  1069. package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
  1070. package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
  1071. package/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
  1072. package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
  1073. package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
  1074. package/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
  1075. package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
  1076. package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
  1077. package/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
  1078. package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
  1079. package/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
  1080. package/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
  1081. package/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
  1082. package/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
  1083. package/node_modules/ajv/dist/vocabularies/next.js +8 -0
  1084. package/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
  1085. package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
  1086. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
  1087. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
  1088. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
  1089. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
  1090. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
  1091. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
  1092. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
  1093. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
  1094. package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
  1095. package/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
  1096. package/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
  1097. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
  1098. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
  1099. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
  1100. package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
  1101. package/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
  1102. package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
  1103. package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
  1104. package/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
  1105. package/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
  1106. package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
  1107. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
  1108. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
  1109. package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
  1110. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
  1111. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
  1112. package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
  1113. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
  1114. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
  1115. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
  1116. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
  1117. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
  1118. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
  1119. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
  1120. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
  1121. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
  1122. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
  1123. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
  1124. package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
  1125. package/node_modules/ajv/dist/vocabularies/validation/pattern.js +33 -0
  1126. package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
  1127. package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
  1128. package/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
  1129. package/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
  1130. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
  1131. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
  1132. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
  1133. package/node_modules/ajv/lib/2019.ts +81 -0
  1134. package/node_modules/ajv/lib/2020.ts +75 -0
  1135. package/node_modules/ajv/lib/ajv.ts +70 -0
  1136. package/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
  1137. package/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
  1138. package/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
  1139. package/node_modules/ajv/lib/compile/errors.ts +184 -0
  1140. package/node_modules/ajv/lib/compile/index.ts +324 -0
  1141. package/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
  1142. package/node_modules/ajv/lib/compile/jtd/serialize.ts +277 -0
  1143. package/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
  1144. package/node_modules/ajv/lib/compile/names.ts +27 -0
  1145. package/node_modules/ajv/lib/compile/ref_error.ts +13 -0
  1146. package/node_modules/ajv/lib/compile/resolve.ts +149 -0
  1147. package/node_modules/ajv/lib/compile/rules.ts +50 -0
  1148. package/node_modules/ajv/lib/compile/util.ts +213 -0
  1149. package/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
  1150. package/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
  1151. package/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
  1152. package/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
  1153. package/node_modules/ajv/lib/compile/validate/index.ts +582 -0
  1154. package/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
  1155. package/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
  1156. package/node_modules/ajv/lib/core.ts +892 -0
  1157. package/node_modules/ajv/lib/jtd.ts +132 -0
  1158. package/node_modules/ajv/lib/refs/data.json +13 -0
  1159. package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
  1160. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
  1161. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
  1162. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
  1163. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
  1164. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  1165. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
  1166. package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
  1167. package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
  1168. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
  1169. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
  1170. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
  1171. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  1172. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  1173. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  1174. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
  1175. package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
  1176. package/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
  1177. package/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
  1178. package/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
  1179. package/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
  1180. package/node_modules/ajv/lib/runtime/equal.ts +7 -0
  1181. package/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
  1182. package/node_modules/ajv/lib/runtime/quote.ts +31 -0
  1183. package/node_modules/ajv/lib/runtime/re2.ts +6 -0
  1184. package/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
  1185. package/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
  1186. package/node_modules/ajv/lib/runtime/uri.ts +6 -0
  1187. package/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
  1188. package/node_modules/ajv/lib/standalone/index.ts +100 -0
  1189. package/node_modules/ajv/lib/standalone/instance.ts +36 -0
  1190. package/node_modules/ajv/lib/types/index.ts +244 -0
  1191. package/node_modules/ajv/lib/types/json-schema.ts +187 -0
  1192. package/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
  1193. package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
  1194. package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
  1195. package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
  1196. package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
  1197. package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
  1198. package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
  1199. package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
  1200. package/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
  1201. package/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
  1202. package/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
  1203. package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
  1204. package/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
  1205. package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
  1206. package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
  1207. package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
  1208. package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
  1209. package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
  1210. package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
  1211. package/node_modules/ajv/lib/vocabularies/code.ts +168 -0
  1212. package/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
  1213. package/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
  1214. package/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
  1215. package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
  1216. package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
  1217. package/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
  1218. package/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
  1219. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
  1220. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
  1221. package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
  1222. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
  1223. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
  1224. package/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
  1225. package/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
  1226. package/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
  1227. package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
  1228. package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
  1229. package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
  1230. package/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
  1231. package/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
  1232. package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
  1233. package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
  1234. package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
  1235. package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
  1236. package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
  1237. package/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
  1238. package/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
  1239. package/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
  1240. package/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
  1241. package/node_modules/ajv/lib/vocabularies/next.ts +8 -0
  1242. package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
  1243. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
  1244. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
  1245. package/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
  1246. package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
  1247. package/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
  1248. package/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
  1249. package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
  1250. package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
  1251. package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
  1252. package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
  1253. package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
  1254. package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
  1255. package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +39 -0
  1256. package/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
  1257. package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
  1258. package/node_modules/ajv/package.json +126 -0
  1259. package/node_modules/ajv-formats/LICENSE +21 -0
  1260. package/node_modules/ajv-formats/README.md +123 -0
  1261. package/node_modules/ajv-formats/dist/formats.d.ts +9 -0
  1262. package/node_modules/ajv-formats/dist/formats.js +173 -0
  1263. package/node_modules/ajv-formats/dist/formats.js.map +1 -0
  1264. package/node_modules/ajv-formats/dist/index.d.ts +15 -0
  1265. package/node_modules/ajv-formats/dist/index.js +37 -0
  1266. package/node_modules/ajv-formats/dist/index.js.map +1 -0
  1267. package/node_modules/ajv-formats/dist/limit.d.ts +10 -0
  1268. package/node_modules/ajv-formats/dist/limit.js +69 -0
  1269. package/node_modules/ajv-formats/dist/limit.js.map +1 -0
  1270. package/node_modules/ajv-formats/package.json +74 -0
  1271. package/node_modules/ajv-formats/src/formats.ts +232 -0
  1272. package/node_modules/ajv-formats/src/index.ts +62 -0
  1273. package/node_modules/ajv-formats/src/limit.ts +99 -0
  1274. package/node_modules/ansi-colors/LICENSE +21 -0
  1275. package/node_modules/ansi-colors/README.md +315 -0
  1276. package/node_modules/ansi-colors/index.js +184 -0
  1277. package/node_modules/ansi-colors/package.json +129 -0
  1278. package/node_modules/ansi-colors/symbols.js +69 -0
  1279. package/node_modules/ansi-colors/types/index.d.ts +235 -0
  1280. package/node_modules/ansi-regex/index.d.ts +37 -0
  1281. package/node_modules/ansi-regex/index.js +10 -0
  1282. package/node_modules/ansi-regex/license +9 -0
  1283. package/node_modules/ansi-regex/package.json +55 -0
  1284. package/node_modules/ansi-regex/readme.md +78 -0
  1285. package/node_modules/atomically/.editorconfig +13 -0
  1286. package/node_modules/atomically/.nvmrc +1 -0
  1287. package/node_modules/atomically/LICENSE +21 -0
  1288. package/node_modules/atomically/README.md +147 -0
  1289. package/node_modules/atomically/dist/consts.d.ts +13 -0
  1290. package/node_modules/atomically/dist/consts.js +28 -0
  1291. package/node_modules/atomically/dist/index.d.ts +13 -0
  1292. package/node_modules/atomically/dist/index.js +177 -0
  1293. package/node_modules/atomically/dist/types.d.ts +28 -0
  1294. package/node_modules/atomically/dist/types.js +3 -0
  1295. package/node_modules/atomically/dist/utils/attemptify.d.ts +4 -0
  1296. package/node_modules/atomically/dist/utils/attemptify.js +25 -0
  1297. package/node_modules/atomically/dist/utils/fs.d.ts +34 -0
  1298. package/node_modules/atomically/dist/utils/fs.js +42 -0
  1299. package/node_modules/atomically/dist/utils/fs_handlers.d.ts +7 -0
  1300. package/node_modules/atomically/dist/utils/fs_handlers.js +28 -0
  1301. package/node_modules/atomically/dist/utils/lang.d.ts +6 -0
  1302. package/node_modules/atomically/dist/utils/lang.js +16 -0
  1303. package/node_modules/atomically/dist/utils/retryify.d.ts +4 -0
  1304. package/node_modules/atomically/dist/utils/retryify.js +45 -0
  1305. package/node_modules/atomically/dist/utils/retryify_queue.d.ts +15 -0
  1306. package/node_modules/atomically/dist/utils/retryify_queue.js +58 -0
  1307. package/node_modules/atomically/dist/utils/scheduler.d.ts +6 -0
  1308. package/node_modules/atomically/dist/utils/scheduler.js +35 -0
  1309. package/node_modules/atomically/dist/utils/temp.d.ts +11 -0
  1310. package/node_modules/atomically/dist/utils/temp.js +56 -0
  1311. package/node_modules/atomically/package.json +51 -0
  1312. package/node_modules/atomically/src/consts.ts +30 -0
  1313. package/node_modules/atomically/src/index.ts +270 -0
  1314. package/node_modules/atomically/src/types.ts +37 -0
  1315. package/node_modules/atomically/src/utils/attemptify.ts +42 -0
  1316. package/node_modules/atomically/src/utils/fs.ts +51 -0
  1317. package/node_modules/atomically/src/utils/fs_handlers.ts +45 -0
  1318. package/node_modules/atomically/src/utils/lang.ts +28 -0
  1319. package/node_modules/atomically/src/utils/retryify.ts +78 -0
  1320. package/node_modules/atomically/src/utils/retryify_queue.ts +95 -0
  1321. package/node_modules/atomically/src/utils/scheduler.ts +60 -0
  1322. package/node_modules/atomically/src/utils/temp.ts +97 -0
  1323. package/node_modules/atomically/tasks/benchmark.js +72 -0
  1324. package/node_modules/atomically/test/basic.js +510 -0
  1325. package/node_modules/atomically/test/concurrency.js +153 -0
  1326. package/node_modules/atomically/test/integration.js +291 -0
  1327. package/node_modules/atomically/tsconfig.json +28 -0
  1328. package/node_modules/commander/LICENSE +22 -0
  1329. package/node_modules/commander/Readme.md +1148 -0
  1330. package/node_modules/commander/esm.mjs +16 -0
  1331. package/node_modules/commander/index.js +26 -0
  1332. package/node_modules/commander/lib/argument.js +145 -0
  1333. package/node_modules/commander/lib/command.js +2179 -0
  1334. package/node_modules/commander/lib/error.js +43 -0
  1335. package/node_modules/commander/lib/help.js +462 -0
  1336. package/node_modules/commander/lib/option.js +329 -0
  1337. package/node_modules/commander/lib/suggestSimilar.js +100 -0
  1338. package/node_modules/commander/package-support.json +16 -0
  1339. package/node_modules/commander/package.json +80 -0
  1340. package/node_modules/commander/typings/esm.d.mts +3 -0
  1341. package/node_modules/commander/typings/index.d.ts +884 -0
  1342. package/node_modules/conf/dist/source/index.d.ts +88 -0
  1343. package/node_modules/conf/dist/source/index.js +484 -0
  1344. package/node_modules/conf/dist/source/types.d.ts +233 -0
  1345. package/node_modules/conf/dist/source/types.js +2 -0
  1346. package/node_modules/conf/license +9 -0
  1347. package/node_modules/conf/package.json +100 -0
  1348. package/node_modules/conf/readme.md +445 -0
  1349. package/node_modules/cross-spawn/LICENSE +21 -0
  1350. package/node_modules/cross-spawn/README.md +89 -0
  1351. package/node_modules/cross-spawn/index.js +39 -0
  1352. package/node_modules/cross-spawn/lib/enoent.js +59 -0
  1353. package/node_modules/cross-spawn/lib/parse.js +91 -0
  1354. package/node_modules/cross-spawn/lib/util/escape.js +47 -0
  1355. package/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
  1356. package/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
  1357. package/node_modules/cross-spawn/node_modules/isexe/.npmignore +2 -0
  1358. package/node_modules/cross-spawn/node_modules/isexe/LICENSE +15 -0
  1359. package/node_modules/cross-spawn/node_modules/isexe/README.md +51 -0
  1360. package/node_modules/cross-spawn/node_modules/isexe/index.js +57 -0
  1361. package/node_modules/cross-spawn/node_modules/isexe/mode.js +41 -0
  1362. package/node_modules/cross-spawn/node_modules/isexe/package.json +31 -0
  1363. package/node_modules/cross-spawn/node_modules/isexe/test/basic.js +221 -0
  1364. package/node_modules/cross-spawn/node_modules/isexe/windows.js +42 -0
  1365. package/node_modules/cross-spawn/node_modules/which/CHANGELOG.md +166 -0
  1366. package/node_modules/cross-spawn/node_modules/which/LICENSE +15 -0
  1367. package/node_modules/cross-spawn/node_modules/which/README.md +54 -0
  1368. package/node_modules/cross-spawn/node_modules/which/bin/node-which +52 -0
  1369. package/node_modules/cross-spawn/node_modules/which/package.json +43 -0
  1370. package/node_modules/cross-spawn/node_modules/which/which.js +125 -0
  1371. package/node_modules/cross-spawn/package.json +73 -0
  1372. package/node_modules/debounce-fn/index.d.ts +74 -0
  1373. package/node_modules/debounce-fn/index.js +54 -0
  1374. package/node_modules/debounce-fn/license +9 -0
  1375. package/node_modules/debounce-fn/package.json +42 -0
  1376. package/node_modules/debounce-fn/readme.md +64 -0
  1377. package/node_modules/define-lazy-prop/index.d.ts +33 -0
  1378. package/node_modules/define-lazy-prop/index.js +19 -0
  1379. package/node_modules/define-lazy-prop/license +9 -0
  1380. package/node_modules/define-lazy-prop/package.json +48 -0
  1381. package/node_modules/define-lazy-prop/readme.md +64 -0
  1382. package/node_modules/dot-prop/index.d.ts +109 -0
  1383. package/node_modules/dot-prop/index.js +138 -0
  1384. package/node_modules/dot-prop/license +9 -0
  1385. package/node_modules/dot-prop/package.json +51 -0
  1386. package/node_modules/dot-prop/readme.md +125 -0
  1387. package/node_modules/dotenv/CHANGELOG.md +643 -0
  1388. package/node_modules/dotenv/LICENSE +23 -0
  1389. package/node_modules/dotenv/README-es.md +757 -0
  1390. package/node_modules/dotenv/README.md +812 -0
  1391. package/node_modules/dotenv/SECURITY.md +1 -0
  1392. package/node_modules/dotenv/config.d.ts +1 -0
  1393. package/node_modules/dotenv/config.js +9 -0
  1394. package/node_modules/dotenv/lib/cli-options.js +17 -0
  1395. package/node_modules/dotenv/lib/env-options.js +28 -0
  1396. package/node_modules/dotenv/lib/main.d.ts +179 -0
  1397. package/node_modules/dotenv/lib/main.js +423 -0
  1398. package/node_modules/dotenv/package.json +62 -0
  1399. package/node_modules/dotenv/skills/dotenv/SKILL.md +200 -0
  1400. package/node_modules/dotenv/skills/dotenvx/SKILL.md +118 -0
  1401. package/node_modules/eciesjs/LICENSE +21 -0
  1402. package/node_modules/eciesjs/README.md +213 -0
  1403. package/node_modules/eciesjs/dist/config.d.ts +24 -0
  1404. package/node_modules/eciesjs/dist/config.js +55 -0
  1405. package/node_modules/eciesjs/dist/consts.d.ts +7 -0
  1406. package/node_modules/eciesjs/dist/consts.js +12 -0
  1407. package/node_modules/eciesjs/dist/index.d.ts +36 -0
  1408. package/node_modules/eciesjs/dist/index.js +79 -0
  1409. package/node_modules/eciesjs/dist/keys/PrivateKey.d.ts +34 -0
  1410. package/node_modules/eciesjs/dist/keys/PrivateKey.js +71 -0
  1411. package/node_modules/eciesjs/dist/keys/PublicKey.d.ts +26 -0
  1412. package/node_modules/eciesjs/dist/keys/PublicKey.js +72 -0
  1413. package/node_modules/eciesjs/dist/keys/index.d.ts +2 -0
  1414. package/node_modules/eciesjs/dist/keys/index.js +9 -0
  1415. package/node_modules/eciesjs/dist/types.d.ts +1 -0
  1416. package/node_modules/eciesjs/dist/types.js +4 -0
  1417. package/node_modules/eciesjs/dist/utils/elliptic.d.ts +7 -0
  1418. package/node_modules/eciesjs/dist/utils/elliptic.js +75 -0
  1419. package/node_modules/eciesjs/dist/utils/hash.d.ts +2 -0
  1420. package/node_modules/eciesjs/dist/utils/hash.js +19 -0
  1421. package/node_modules/eciesjs/dist/utils/hex.d.ts +2 -0
  1422. package/node_modules/eciesjs/dist/utils/hex.js +10 -0
  1423. package/node_modules/eciesjs/dist/utils/index.d.ts +4 -0
  1424. package/node_modules/eciesjs/dist/utils/index.js +20 -0
  1425. package/node_modules/eciesjs/dist/utils/symmetric.d.ts +6 -0
  1426. package/node_modules/eciesjs/dist/utils/symmetric.js +63 -0
  1427. package/node_modules/eciesjs/package.json +81 -0
  1428. package/node_modules/enquirer/LICENSE +21 -0
  1429. package/node_modules/enquirer/README.md +1839 -0
  1430. package/node_modules/enquirer/index.d.ts +156 -0
  1431. package/node_modules/enquirer/index.js +254 -0
  1432. package/node_modules/enquirer/lib/ansi.js +125 -0
  1433. package/node_modules/enquirer/lib/combos.js +75 -0
  1434. package/node_modules/enquirer/lib/completer.js +52 -0
  1435. package/node_modules/enquirer/lib/interpolate.js +266 -0
  1436. package/node_modules/enquirer/lib/keypress.js +245 -0
  1437. package/node_modules/enquirer/lib/placeholder.js +63 -0
  1438. package/node_modules/enquirer/lib/prompt.js +497 -0
  1439. package/node_modules/enquirer/lib/prompts/autocomplete.js +118 -0
  1440. package/node_modules/enquirer/lib/prompts/basicauth.js +41 -0
  1441. package/node_modules/enquirer/lib/prompts/confirm.js +13 -0
  1442. package/node_modules/enquirer/lib/prompts/editable.js +136 -0
  1443. package/node_modules/enquirer/lib/prompts/form.js +195 -0
  1444. package/node_modules/enquirer/lib/prompts/index.js +28 -0
  1445. package/node_modules/enquirer/lib/prompts/input.js +55 -0
  1446. package/node_modules/enquirer/lib/prompts/invisible.js +11 -0
  1447. package/node_modules/enquirer/lib/prompts/list.js +36 -0
  1448. package/node_modules/enquirer/lib/prompts/multiselect.js +11 -0
  1449. package/node_modules/enquirer/lib/prompts/numeral.js +1 -0
  1450. package/node_modules/enquirer/lib/prompts/password.js +18 -0
  1451. package/node_modules/enquirer/lib/prompts/quiz.js +37 -0
  1452. package/node_modules/enquirer/lib/prompts/scale.js +237 -0
  1453. package/node_modules/enquirer/lib/prompts/select.js +139 -0
  1454. package/node_modules/enquirer/lib/prompts/snippet.js +185 -0
  1455. package/node_modules/enquirer/lib/prompts/sort.js +37 -0
  1456. package/node_modules/enquirer/lib/prompts/survey.js +163 -0
  1457. package/node_modules/enquirer/lib/prompts/text.js +1 -0
  1458. package/node_modules/enquirer/lib/prompts/toggle.js +109 -0
  1459. package/node_modules/enquirer/lib/queue.js +33 -0
  1460. package/node_modules/enquirer/lib/render.js +33 -0
  1461. package/node_modules/enquirer/lib/roles.js +46 -0
  1462. package/node_modules/enquirer/lib/state.js +69 -0
  1463. package/node_modules/enquirer/lib/styles.js +144 -0
  1464. package/node_modules/enquirer/lib/symbols.js +66 -0
  1465. package/node_modules/enquirer/lib/theme.js +11 -0
  1466. package/node_modules/enquirer/lib/timer.js +38 -0
  1467. package/node_modules/enquirer/lib/types/array.js +664 -0
  1468. package/node_modules/enquirer/lib/types/auth.js +29 -0
  1469. package/node_modules/enquirer/lib/types/boolean.js +88 -0
  1470. package/node_modules/enquirer/lib/types/index.js +7 -0
  1471. package/node_modules/enquirer/lib/types/number.js +86 -0
  1472. package/node_modules/enquirer/lib/types/string.js +209 -0
  1473. package/node_modules/enquirer/lib/utils.js +279 -0
  1474. package/node_modules/enquirer/package.json +112 -0
  1475. package/node_modules/env-paths/index.d.ts +101 -0
  1476. package/node_modules/env-paths/index.js +74 -0
  1477. package/node_modules/env-paths/license +9 -0
  1478. package/node_modules/env-paths/package.json +45 -0
  1479. package/node_modules/env-paths/readme.md +115 -0
  1480. package/node_modules/execa/index.d.ts +564 -0
  1481. package/node_modules/execa/index.js +268 -0
  1482. package/node_modules/execa/lib/command.js +52 -0
  1483. package/node_modules/execa/lib/error.js +88 -0
  1484. package/node_modules/execa/lib/kill.js +115 -0
  1485. package/node_modules/execa/lib/promise.js +46 -0
  1486. package/node_modules/execa/lib/stdio.js +52 -0
  1487. package/node_modules/execa/lib/stream.js +97 -0
  1488. package/node_modules/execa/license +9 -0
  1489. package/node_modules/execa/package.json +74 -0
  1490. package/node_modules/execa/readme.md +663 -0
  1491. package/node_modules/fast-deep-equal/LICENSE +21 -0
  1492. package/node_modules/fast-deep-equal/README.md +96 -0
  1493. package/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
  1494. package/node_modules/fast-deep-equal/es6/index.js +72 -0
  1495. package/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
  1496. package/node_modules/fast-deep-equal/es6/react.js +79 -0
  1497. package/node_modules/fast-deep-equal/index.d.ts +4 -0
  1498. package/node_modules/fast-deep-equal/index.js +46 -0
  1499. package/node_modules/fast-deep-equal/package.json +61 -0
  1500. package/node_modules/fast-deep-equal/react.d.ts +2 -0
  1501. package/node_modules/fast-deep-equal/react.js +53 -0
  1502. package/node_modules/fast-uri/.gitattributes +2 -0
  1503. package/node_modules/fast-uri/.github/dependabot.yml +13 -0
  1504. package/node_modules/fast-uri/.github/workflows/ci.yml +106 -0
  1505. package/node_modules/fast-uri/.github/workflows/lock-threads.yml +19 -0
  1506. package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +24 -0
  1507. package/node_modules/fast-uri/LICENSE +30 -0
  1508. package/node_modules/fast-uri/README.md +152 -0
  1509. package/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
  1510. package/node_modules/fast-uri/benchmark/equal.mjs +51 -0
  1511. package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
  1512. package/node_modules/fast-uri/benchmark/package.json +17 -0
  1513. package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
  1514. package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
  1515. package/node_modules/fast-uri/eslint.config.js +6 -0
  1516. package/node_modules/fast-uri/index.js +406 -0
  1517. package/node_modules/fast-uri/lib/schemes.js +267 -0
  1518. package/node_modules/fast-uri/lib/utils.js +443 -0
  1519. package/node_modules/fast-uri/package.json +68 -0
  1520. package/node_modules/fast-uri/test/ajv.test.js +43 -0
  1521. package/node_modules/fast-uri/test/equal.test.js +117 -0
  1522. package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
  1523. package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
  1524. package/node_modules/fast-uri/test/parse.test.js +323 -0
  1525. package/node_modules/fast-uri/test/resolve.test.js +87 -0
  1526. package/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
  1527. package/node_modules/fast-uri/test/security-normalization.test.js +39 -0
  1528. package/node_modules/fast-uri/test/security.test.js +133 -0
  1529. package/node_modules/fast-uri/test/serialize.test.js +151 -0
  1530. package/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
  1531. package/node_modules/fast-uri/test/uri-js.test.js +912 -0
  1532. package/node_modules/fast-uri/test/util.test.js +38 -0
  1533. package/node_modules/fast-uri/tsconfig.json +9 -0
  1534. package/node_modules/fast-uri/types/index.d.ts +60 -0
  1535. package/node_modules/fast-uri/types/index.test-d.ts +17 -0
  1536. package/node_modules/fdir/LICENSE +7 -0
  1537. package/node_modules/fdir/README.md +91 -0
  1538. package/node_modules/fdir/dist/index.cjs +588 -0
  1539. package/node_modules/fdir/dist/index.d.cts +155 -0
  1540. package/node_modules/fdir/dist/index.d.mts +155 -0
  1541. package/node_modules/fdir/dist/index.mjs +570 -0
  1542. package/node_modules/fdir/package.json +103 -0
  1543. package/node_modules/find-up/index.js +46 -0
  1544. package/node_modules/find-up/license +9 -0
  1545. package/node_modules/find-up/package.json +50 -0
  1546. package/node_modules/find-up/readme.md +87 -0
  1547. package/node_modules/get-stream/buffer-stream.js +52 -0
  1548. package/node_modules/get-stream/index.d.ts +105 -0
  1549. package/node_modules/get-stream/index.js +61 -0
  1550. package/node_modules/get-stream/license +9 -0
  1551. package/node_modules/get-stream/package.json +47 -0
  1552. package/node_modules/get-stream/readme.md +124 -0
  1553. package/node_modules/human-signals/CHANGELOG.md +11 -0
  1554. package/node_modules/human-signals/LICENSE +201 -0
  1555. package/node_modules/human-signals/README.md +165 -0
  1556. package/node_modules/human-signals/build/src/core.js +273 -0
  1557. package/node_modules/human-signals/build/src/core.js.map +1 -0
  1558. package/node_modules/human-signals/build/src/main.d.ts +52 -0
  1559. package/node_modules/human-signals/build/src/main.js +71 -0
  1560. package/node_modules/human-signals/build/src/main.js.map +1 -0
  1561. package/node_modules/human-signals/build/src/realtime.js +19 -0
  1562. package/node_modules/human-signals/build/src/realtime.js.map +1 -0
  1563. package/node_modules/human-signals/build/src/signals.js +35 -0
  1564. package/node_modules/human-signals/build/src/signals.js.map +1 -0
  1565. package/node_modules/human-signals/package.json +64 -0
  1566. package/node_modules/ignore/LICENSE-MIT +21 -0
  1567. package/node_modules/ignore/README.md +412 -0
  1568. package/node_modules/ignore/index.d.ts +61 -0
  1569. package/node_modules/ignore/index.js +636 -0
  1570. package/node_modules/ignore/legacy.js +559 -0
  1571. package/node_modules/ignore/package.json +74 -0
  1572. package/node_modules/is-docker/cli.js +5 -0
  1573. package/node_modules/is-docker/index.d.ts +15 -0
  1574. package/node_modules/is-docker/index.js +29 -0
  1575. package/node_modules/is-docker/license +9 -0
  1576. package/node_modules/is-docker/package.json +42 -0
  1577. package/node_modules/is-docker/readme.md +27 -0
  1578. package/node_modules/is-obj/index.d.ts +22 -0
  1579. package/node_modules/is-obj/index.js +6 -0
  1580. package/node_modules/is-obj/license +9 -0
  1581. package/node_modules/is-obj/package.json +34 -0
  1582. package/node_modules/is-obj/readme.md +39 -0
  1583. package/node_modules/is-stream/index.d.ts +79 -0
  1584. package/node_modules/is-stream/index.js +28 -0
  1585. package/node_modules/is-stream/license +9 -0
  1586. package/node_modules/is-stream/package.json +42 -0
  1587. package/node_modules/is-stream/readme.md +60 -0
  1588. package/node_modules/is-wsl/index.d.ts +15 -0
  1589. package/node_modules/is-wsl/index.js +31 -0
  1590. package/node_modules/is-wsl/license +9 -0
  1591. package/node_modules/is-wsl/package.json +45 -0
  1592. package/node_modules/is-wsl/readme.md +36 -0
  1593. package/node_modules/isexe/LICENSE.md +55 -0
  1594. package/node_modules/isexe/README.md +80 -0
  1595. package/node_modules/isexe/dist/commonjs/index.d.ts +14 -0
  1596. package/node_modules/isexe/dist/commonjs/index.d.ts.map +1 -0
  1597. package/node_modules/isexe/dist/commonjs/index.js +56 -0
  1598. package/node_modules/isexe/dist/commonjs/index.js.map +1 -0
  1599. package/node_modules/isexe/dist/commonjs/index.min.js +2 -0
  1600. package/node_modules/isexe/dist/commonjs/index.min.js.map +7 -0
  1601. package/node_modules/isexe/dist/commonjs/options.d.ts +32 -0
  1602. package/node_modules/isexe/dist/commonjs/options.d.ts.map +1 -0
  1603. package/node_modules/isexe/dist/commonjs/options.js +3 -0
  1604. package/node_modules/isexe/dist/commonjs/options.js.map +1 -0
  1605. package/node_modules/isexe/dist/commonjs/package.json +3 -0
  1606. package/node_modules/isexe/dist/commonjs/posix.d.ts +18 -0
  1607. package/node_modules/isexe/dist/commonjs/posix.d.ts.map +1 -0
  1608. package/node_modules/isexe/dist/commonjs/posix.js +67 -0
  1609. package/node_modules/isexe/dist/commonjs/posix.js.map +1 -0
  1610. package/node_modules/isexe/dist/commonjs/win32.d.ts +18 -0
  1611. package/node_modules/isexe/dist/commonjs/win32.d.ts.map +1 -0
  1612. package/node_modules/isexe/dist/commonjs/win32.js +63 -0
  1613. package/node_modules/isexe/dist/commonjs/win32.js.map +1 -0
  1614. package/node_modules/isexe/dist/esm/index.d.ts +14 -0
  1615. package/node_modules/isexe/dist/esm/index.d.ts.map +1 -0
  1616. package/node_modules/isexe/dist/esm/index.js +16 -0
  1617. package/node_modules/isexe/dist/esm/index.js.map +1 -0
  1618. package/node_modules/isexe/dist/esm/index.min.js +2 -0
  1619. package/node_modules/isexe/dist/esm/index.min.js.map +7 -0
  1620. package/node_modules/isexe/dist/esm/options.d.ts +32 -0
  1621. package/node_modules/isexe/dist/esm/options.d.ts.map +1 -0
  1622. package/node_modules/isexe/dist/esm/options.js +2 -0
  1623. package/node_modules/isexe/dist/esm/options.js.map +1 -0
  1624. package/node_modules/isexe/dist/esm/package.json +3 -0
  1625. package/node_modules/isexe/dist/esm/posix.d.ts +18 -0
  1626. package/node_modules/isexe/dist/esm/posix.d.ts.map +1 -0
  1627. package/node_modules/isexe/dist/esm/posix.js +62 -0
  1628. package/node_modules/isexe/dist/esm/posix.js.map +1 -0
  1629. package/node_modules/isexe/dist/esm/win32.d.ts +18 -0
  1630. package/node_modules/isexe/dist/esm/win32.d.ts.map +1 -0
  1631. package/node_modules/isexe/dist/esm/win32.js +58 -0
  1632. package/node_modules/isexe/dist/esm/win32.js.map +1 -0
  1633. package/node_modules/isexe/package.json +78 -0
  1634. package/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
  1635. package/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
  1636. package/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
  1637. package/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
  1638. package/node_modules/json-schema-traverse/LICENSE +21 -0
  1639. package/node_modules/json-schema-traverse/README.md +95 -0
  1640. package/node_modules/json-schema-traverse/index.d.ts +40 -0
  1641. package/node_modules/json-schema-traverse/index.js +93 -0
  1642. package/node_modules/json-schema-traverse/package.json +43 -0
  1643. package/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
  1644. package/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
  1645. package/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
  1646. package/node_modules/json-schema-typed/LICENSE +27 -0
  1647. package/node_modules/json-schema-typed/README.md +63 -0
  1648. package/node_modules/json-schema-typed/dist-node/index.js +50 -0
  1649. package/node_modules/json-schema-typed/dist-node/index.js.map +1 -0
  1650. package/node_modules/json-schema-typed/dist-src/index.js +51 -0
  1651. package/node_modules/json-schema-typed/dist-types/__tests__/index.test.d.ts +1 -0
  1652. package/node_modules/json-schema-typed/dist-types/index.d.ts +909 -0
  1653. package/node_modules/json-schema-typed/dist-web/index.js +52 -0
  1654. package/node_modules/json-schema-typed/dist-web/index.js.map +1 -0
  1655. package/node_modules/json-schema-typed/package.json +76 -0
  1656. package/node_modules/locate-path/index.js +24 -0
  1657. package/node_modules/locate-path/license +9 -0
  1658. package/node_modules/locate-path/package.json +44 -0
  1659. package/node_modules/locate-path/readme.md +99 -0
  1660. package/node_modules/merge-stream/LICENSE +21 -0
  1661. package/node_modules/merge-stream/README.md +78 -0
  1662. package/node_modules/merge-stream/index.js +41 -0
  1663. package/node_modules/merge-stream/package.json +19 -0
  1664. package/node_modules/mimic-fn/index.d.ts +56 -0
  1665. package/node_modules/mimic-fn/index.js +75 -0
  1666. package/node_modules/mimic-fn/license +9 -0
  1667. package/node_modules/mimic-fn/package.json +42 -0
  1668. package/node_modules/mimic-fn/readme.md +95 -0
  1669. package/node_modules/npm-run-path/index.d.ts +89 -0
  1670. package/node_modules/npm-run-path/index.js +47 -0
  1671. package/node_modules/npm-run-path/license +9 -0
  1672. package/node_modules/npm-run-path/package.json +44 -0
  1673. package/node_modules/npm-run-path/readme.md +115 -0
  1674. package/node_modules/object-treeify/LICENSE +22 -0
  1675. package/node_modules/object-treeify/README.md +120 -0
  1676. package/node_modules/object-treeify/lib/index.js +49 -0
  1677. package/node_modules/object-treeify/package.json +109 -0
  1678. package/node_modules/onetime/index.d.ts +64 -0
  1679. package/node_modules/onetime/index.js +44 -0
  1680. package/node_modules/onetime/license +9 -0
  1681. package/node_modules/onetime/node_modules/mimic-fn/index.d.ts +54 -0
  1682. package/node_modules/onetime/node_modules/mimic-fn/index.js +13 -0
  1683. package/node_modules/onetime/node_modules/mimic-fn/license +9 -0
  1684. package/node_modules/onetime/node_modules/mimic-fn/package.json +42 -0
  1685. package/node_modules/onetime/node_modules/mimic-fn/readme.md +69 -0
  1686. package/node_modules/onetime/package.json +43 -0
  1687. package/node_modules/onetime/readme.md +94 -0
  1688. package/node_modules/open/index.d.ts +153 -0
  1689. package/node_modules/open/index.js +334 -0
  1690. package/node_modules/open/license +9 -0
  1691. package/node_modules/open/package.json +61 -0
  1692. package/node_modules/open/readme.md +171 -0
  1693. package/node_modules/open/xdg-open +1066 -0
  1694. package/node_modules/p-limit/index.d.ts +38 -0
  1695. package/node_modules/p-limit/index.js +57 -0
  1696. package/node_modules/p-limit/license +9 -0
  1697. package/node_modules/p-limit/package.json +52 -0
  1698. package/node_modules/p-limit/readme.md +101 -0
  1699. package/node_modules/p-locate/index.js +34 -0
  1700. package/node_modules/p-locate/license +9 -0
  1701. package/node_modules/p-locate/package.json +51 -0
  1702. package/node_modules/p-locate/readme.md +88 -0
  1703. package/node_modules/p-try/index.d.ts +39 -0
  1704. package/node_modules/p-try/index.js +9 -0
  1705. package/node_modules/p-try/license +9 -0
  1706. package/node_modules/p-try/package.json +42 -0
  1707. package/node_modules/p-try/readme.md +58 -0
  1708. package/node_modules/path-exists/index.js +17 -0
  1709. package/node_modules/path-exists/license +21 -0
  1710. package/node_modules/path-exists/package.json +40 -0
  1711. package/node_modules/path-exists/readme.md +50 -0
  1712. package/node_modules/path-key/index.d.ts +40 -0
  1713. package/node_modules/path-key/index.js +16 -0
  1714. package/node_modules/path-key/license +9 -0
  1715. package/node_modules/path-key/package.json +39 -0
  1716. package/node_modules/path-key/readme.md +61 -0
  1717. package/node_modules/picomatch/LICENSE +21 -0
  1718. package/node_modules/picomatch/README.md +749 -0
  1719. package/node_modules/picomatch/index.js +17 -0
  1720. package/node_modules/picomatch/lib/constants.js +184 -0
  1721. package/node_modules/picomatch/lib/parse.js +1386 -0
  1722. package/node_modules/picomatch/lib/picomatch.js +349 -0
  1723. package/node_modules/picomatch/lib/scan.js +391 -0
  1724. package/node_modules/picomatch/lib/utils.js +72 -0
  1725. package/node_modules/picomatch/package.json +82 -0
  1726. package/node_modules/picomatch/posix.js +3 -0
  1727. package/node_modules/pkg-up/index.d.ts +48 -0
  1728. package/node_modules/pkg-up/index.js +5 -0
  1729. package/node_modules/pkg-up/license +9 -0
  1730. package/node_modules/pkg-up/package.json +52 -0
  1731. package/node_modules/pkg-up/readme.md +68 -0
  1732. package/node_modules/require-from-string/index.js +34 -0
  1733. package/node_modules/require-from-string/license +21 -0
  1734. package/node_modules/require-from-string/package.json +28 -0
  1735. package/node_modules/require-from-string/readme.md +56 -0
  1736. package/node_modules/semver/LICENSE +15 -0
  1737. package/node_modules/semver/README.md +680 -0
  1738. package/node_modules/semver/bin/semver.js +195 -0
  1739. package/node_modules/semver/classes/comparator.js +143 -0
  1740. package/node_modules/semver/classes/index.js +7 -0
  1741. package/node_modules/semver/classes/range.js +573 -0
  1742. package/node_modules/semver/classes/semver.js +350 -0
  1743. package/node_modules/semver/functions/clean.js +8 -0
  1744. package/node_modules/semver/functions/cmp.js +54 -0
  1745. package/node_modules/semver/functions/coerce.js +62 -0
  1746. package/node_modules/semver/functions/compare-build.js +9 -0
  1747. package/node_modules/semver/functions/compare-loose.js +5 -0
  1748. package/node_modules/semver/functions/compare.js +7 -0
  1749. package/node_modules/semver/functions/diff.js +60 -0
  1750. package/node_modules/semver/functions/eq.js +5 -0
  1751. package/node_modules/semver/functions/gt.js +5 -0
  1752. package/node_modules/semver/functions/gte.js +5 -0
  1753. package/node_modules/semver/functions/inc.js +21 -0
  1754. package/node_modules/semver/functions/lt.js +5 -0
  1755. package/node_modules/semver/functions/lte.js +5 -0
  1756. package/node_modules/semver/functions/major.js +5 -0
  1757. package/node_modules/semver/functions/minor.js +5 -0
  1758. package/node_modules/semver/functions/neq.js +5 -0
  1759. package/node_modules/semver/functions/parse.js +18 -0
  1760. package/node_modules/semver/functions/patch.js +5 -0
  1761. package/node_modules/semver/functions/prerelease.js +8 -0
  1762. package/node_modules/semver/functions/rcompare.js +5 -0
  1763. package/node_modules/semver/functions/rsort.js +5 -0
  1764. package/node_modules/semver/functions/satisfies.js +12 -0
  1765. package/node_modules/semver/functions/sort.js +5 -0
  1766. package/node_modules/semver/functions/truncate.js +48 -0
  1767. package/node_modules/semver/functions/valid.js +8 -0
  1768. package/node_modules/semver/index.js +93 -0
  1769. package/node_modules/semver/internal/constants.js +37 -0
  1770. package/node_modules/semver/internal/debug.js +11 -0
  1771. package/node_modules/semver/internal/identifiers.js +29 -0
  1772. package/node_modules/semver/internal/lrucache.js +42 -0
  1773. package/node_modules/semver/internal/parse-options.js +17 -0
  1774. package/node_modules/semver/internal/re.js +223 -0
  1775. package/node_modules/semver/package.json +78 -0
  1776. package/node_modules/semver/preload.js +4 -0
  1777. package/node_modules/semver/range.bnf +17 -0
  1778. package/node_modules/semver/ranges/gtr.js +6 -0
  1779. package/node_modules/semver/ranges/intersects.js +9 -0
  1780. package/node_modules/semver/ranges/ltr.js +6 -0
  1781. package/node_modules/semver/ranges/max-satisfying.js +27 -0
  1782. package/node_modules/semver/ranges/min-satisfying.js +26 -0
  1783. package/node_modules/semver/ranges/min-version.js +63 -0
  1784. package/node_modules/semver/ranges/outside.js +82 -0
  1785. package/node_modules/semver/ranges/simplify.js +49 -0
  1786. package/node_modules/semver/ranges/subset.js +249 -0
  1787. package/node_modules/semver/ranges/to-comparators.js +10 -0
  1788. package/node_modules/semver/ranges/valid.js +13 -0
  1789. package/node_modules/shebang-command/index.js +19 -0
  1790. package/node_modules/shebang-command/license +9 -0
  1791. package/node_modules/shebang-command/package.json +34 -0
  1792. package/node_modules/shebang-command/readme.md +34 -0
  1793. package/node_modules/shebang-regex/index.d.ts +22 -0
  1794. package/node_modules/shebang-regex/index.js +2 -0
  1795. package/node_modules/shebang-regex/license +9 -0
  1796. package/node_modules/shebang-regex/package.json +35 -0
  1797. package/node_modules/shebang-regex/readme.md +33 -0
  1798. package/node_modules/signal-exit/LICENSE.txt +16 -0
  1799. package/node_modules/signal-exit/README.md +39 -0
  1800. package/node_modules/signal-exit/index.js +202 -0
  1801. package/node_modules/signal-exit/package.json +38 -0
  1802. package/node_modules/signal-exit/signals.js +53 -0
  1803. package/node_modules/strip-ansi/index.d.ts +17 -0
  1804. package/node_modules/strip-ansi/index.js +4 -0
  1805. package/node_modules/strip-ansi/license +9 -0
  1806. package/node_modules/strip-ansi/package.json +54 -0
  1807. package/node_modules/strip-ansi/readme.md +46 -0
  1808. package/node_modules/strip-final-newline/index.js +16 -0
  1809. package/node_modules/strip-final-newline/license +9 -0
  1810. package/node_modules/strip-final-newline/package.json +40 -0
  1811. package/node_modules/strip-final-newline/readme.md +30 -0
  1812. package/node_modules/systeminformation/LICENSE +20 -0
  1813. package/node_modules/systeminformation/README.md +1208 -0
  1814. package/node_modules/systeminformation/lib/audio.js +276 -0
  1815. package/node_modules/systeminformation/lib/battery.js +330 -0
  1816. package/node_modules/systeminformation/lib/bluetooth.js +311 -0
  1817. package/node_modules/systeminformation/lib/bluetoothVendors.js +1138 -0
  1818. package/node_modules/systeminformation/lib/cli.js +100 -0
  1819. package/node_modules/systeminformation/lib/cpu.js +2237 -0
  1820. package/node_modules/systeminformation/lib/docker.js +803 -0
  1821. package/node_modules/systeminformation/lib/dockerSocket.js +322 -0
  1822. package/node_modules/systeminformation/lib/filesystem.js +1745 -0
  1823. package/node_modules/systeminformation/lib/graphics.js +1235 -0
  1824. package/node_modules/systeminformation/lib/index.d.ts +1053 -0
  1825. package/node_modules/systeminformation/lib/index.js +518 -0
  1826. package/node_modules/systeminformation/lib/internet.js +259 -0
  1827. package/node_modules/systeminformation/lib/memory.js +613 -0
  1828. package/node_modules/systeminformation/lib/network.js +1992 -0
  1829. package/node_modules/systeminformation/lib/osinfo.js +1310 -0
  1830. package/node_modules/systeminformation/lib/printer.js +209 -0
  1831. package/node_modules/systeminformation/lib/processes.js +1425 -0
  1832. package/node_modules/systeminformation/lib/system.js +856 -0
  1833. package/node_modules/systeminformation/lib/usb.js +313 -0
  1834. package/node_modules/systeminformation/lib/users.js +412 -0
  1835. package/node_modules/systeminformation/lib/util.js +2787 -0
  1836. package/node_modules/systeminformation/lib/virtualbox.js +110 -0
  1837. package/node_modules/systeminformation/lib/wifi.js +822 -0
  1838. package/node_modules/systeminformation/package.json +101 -0
  1839. package/node_modules/undici/LICENSE +21 -0
  1840. package/node_modules/undici/README.md +741 -0
  1841. package/node_modules/undici/docs/docs/api/Agent.md +84 -0
  1842. package/node_modules/undici/docs/docs/api/BalancedPool.md +99 -0
  1843. package/node_modules/undici/docs/docs/api/CacheStorage.md +30 -0
  1844. package/node_modules/undici/docs/docs/api/CacheStore.md +164 -0
  1845. package/node_modules/undici/docs/docs/api/Client.md +288 -0
  1846. package/node_modules/undici/docs/docs/api/ClientStats.md +27 -0
  1847. package/node_modules/undici/docs/docs/api/Connector.md +115 -0
  1848. package/node_modules/undici/docs/docs/api/ContentType.md +57 -0
  1849. package/node_modules/undici/docs/docs/api/Cookies.md +128 -0
  1850. package/node_modules/undici/docs/docs/api/Debug.md +62 -0
  1851. package/node_modules/undici/docs/docs/api/DiagnosticsChannel.md +315 -0
  1852. package/node_modules/undici/docs/docs/api/Dispatcher.md +1392 -0
  1853. package/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +159 -0
  1854. package/node_modules/undici/docs/docs/api/Errors.md +49 -0
  1855. package/node_modules/undici/docs/docs/api/EventSource.md +45 -0
  1856. package/node_modules/undici/docs/docs/api/Fetch.md +60 -0
  1857. package/node_modules/undici/docs/docs/api/GlobalInstallation.md +139 -0
  1858. package/node_modules/undici/docs/docs/api/H2CClient.md +263 -0
  1859. package/node_modules/undici/docs/docs/api/MockAgent.md +603 -0
  1860. package/node_modules/undici/docs/docs/api/MockCallHistory.md +197 -0
  1861. package/node_modules/undici/docs/docs/api/MockCallHistoryLog.md +43 -0
  1862. package/node_modules/undici/docs/docs/api/MockClient.md +81 -0
  1863. package/node_modules/undici/docs/docs/api/MockErrors.md +12 -0
  1864. package/node_modules/undici/docs/docs/api/MockPool.md +555 -0
  1865. package/node_modules/undici/docs/docs/api/Pool.md +84 -0
  1866. package/node_modules/undici/docs/docs/api/PoolStats.md +35 -0
  1867. package/node_modules/undici/docs/docs/api/ProxyAgent.md +229 -0
  1868. package/node_modules/undici/docs/docs/api/RedirectHandler.md +93 -0
  1869. package/node_modules/undici/docs/docs/api/RetryAgent.md +50 -0
  1870. package/node_modules/undici/docs/docs/api/RetryHandler.md +118 -0
  1871. package/node_modules/undici/docs/docs/api/RoundRobinPool.md +145 -0
  1872. package/node_modules/undici/docs/docs/api/SnapshotAgent.md +616 -0
  1873. package/node_modules/undici/docs/docs/api/Socks5ProxyAgent.md +275 -0
  1874. package/node_modules/undici/docs/docs/api/Util.md +25 -0
  1875. package/node_modules/undici/docs/docs/api/WebSocket.md +141 -0
  1876. package/node_modules/undici/docs/docs/api/api-lifecycle.md +91 -0
  1877. package/node_modules/undici/docs/docs/best-practices/client-certificate.md +64 -0
  1878. package/node_modules/undici/docs/docs/best-practices/crawling.md +58 -0
  1879. package/node_modules/undici/docs/docs/best-practices/mocking-request.md +190 -0
  1880. package/node_modules/undici/docs/docs/best-practices/proxy.md +127 -0
  1881. package/node_modules/undici/docs/docs/best-practices/undici-vs-builtin-fetch.md +224 -0
  1882. package/node_modules/undici/docs/docs/best-practices/writing-tests.md +63 -0
  1883. package/node_modules/undici/index-fetch.js +65 -0
  1884. package/node_modules/undici/index.d.ts +3 -0
  1885. package/node_modules/undici/index.js +234 -0
  1886. package/node_modules/undici/lib/api/abort-signal.js +59 -0
  1887. package/node_modules/undici/lib/api/api-connect.js +110 -0
  1888. package/node_modules/undici/lib/api/api-pipeline.js +252 -0
  1889. package/node_modules/undici/lib/api/api-request.js +214 -0
  1890. package/node_modules/undici/lib/api/api-stream.js +209 -0
  1891. package/node_modules/undici/lib/api/api-upgrade.js +111 -0
  1892. package/node_modules/undici/lib/api/index.js +7 -0
  1893. package/node_modules/undici/lib/api/readable.js +580 -0
  1894. package/node_modules/undici/lib/cache/memory-cache-store.js +234 -0
  1895. package/node_modules/undici/lib/cache/sqlite-cache-store.js +461 -0
  1896. package/node_modules/undici/lib/core/connect.js +153 -0
  1897. package/node_modules/undici/lib/core/constants.js +143 -0
  1898. package/node_modules/undici/lib/core/diagnostics.js +227 -0
  1899. package/node_modules/undici/lib/core/errors.js +477 -0
  1900. package/node_modules/undici/lib/core/request.js +453 -0
  1901. package/node_modules/undici/lib/core/socks5-client.js +422 -0
  1902. package/node_modules/undici/lib/core/socks5-utils.js +212 -0
  1903. package/node_modules/undici/lib/core/symbols.js +75 -0
  1904. package/node_modules/undici/lib/core/tree.js +160 -0
  1905. package/node_modules/undici/lib/core/util.js +992 -0
  1906. package/node_modules/undici/lib/dispatcher/agent.js +158 -0
  1907. package/node_modules/undici/lib/dispatcher/balanced-pool.js +219 -0
  1908. package/node_modules/undici/lib/dispatcher/client-h1.js +1722 -0
  1909. package/node_modules/undici/lib/dispatcher/client-h2.js +995 -0
  1910. package/node_modules/undici/lib/dispatcher/client.js +664 -0
  1911. package/node_modules/undici/lib/dispatcher/dispatcher-base.js +184 -0
  1912. package/node_modules/undici/lib/dispatcher/dispatcher.js +48 -0
  1913. package/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +146 -0
  1914. package/node_modules/undici/lib/dispatcher/fixed-queue.js +135 -0
  1915. package/node_modules/undici/lib/dispatcher/h2c-client.js +51 -0
  1916. package/node_modules/undici/lib/dispatcher/pool-base.js +214 -0
  1917. package/node_modules/undici/lib/dispatcher/pool.js +118 -0
  1918. package/node_modules/undici/lib/dispatcher/proxy-agent.js +319 -0
  1919. package/node_modules/undici/lib/dispatcher/retry-agent.js +35 -0
  1920. package/node_modules/undici/lib/dispatcher/round-robin-pool.js +137 -0
  1921. package/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +260 -0
  1922. package/node_modules/undici/lib/encoding/index.js +33 -0
  1923. package/node_modules/undici/lib/global.js +59 -0
  1924. package/node_modules/undici/lib/handler/cache-handler.js +578 -0
  1925. package/node_modules/undici/lib/handler/cache-revalidation-handler.js +124 -0
  1926. package/node_modules/undici/lib/handler/decorator-handler.js +67 -0
  1927. package/node_modules/undici/lib/handler/deduplication-handler.js +460 -0
  1928. package/node_modules/undici/lib/handler/redirect-handler.js +238 -0
  1929. package/node_modules/undici/lib/handler/retry-handler.js +394 -0
  1930. package/node_modules/undici/lib/handler/unwrap-handler.js +106 -0
  1931. package/node_modules/undici/lib/handler/wrap-handler.js +105 -0
  1932. package/node_modules/undici/lib/interceptor/cache.js +495 -0
  1933. package/node_modules/undici/lib/interceptor/decompress.js +259 -0
  1934. package/node_modules/undici/lib/interceptor/deduplicate.js +117 -0
  1935. package/node_modules/undici/lib/interceptor/dns.js +571 -0
  1936. package/node_modules/undici/lib/interceptor/dump.js +112 -0
  1937. package/node_modules/undici/lib/interceptor/redirect.js +21 -0
  1938. package/node_modules/undici/lib/interceptor/response-error.js +95 -0
  1939. package/node_modules/undici/lib/interceptor/retry.js +19 -0
  1940. package/node_modules/undici/lib/llhttp/.gitkeep +0 -0
  1941. package/node_modules/undici/lib/llhttp/constants.d.ts +195 -0
  1942. package/node_modules/undici/lib/llhttp/constants.js +531 -0
  1943. package/node_modules/undici/lib/llhttp/llhttp-wasm.js +15 -0
  1944. package/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +15 -0
  1945. package/node_modules/undici/lib/llhttp/utils.d.ts +2 -0
  1946. package/node_modules/undici/lib/llhttp/utils.js +12 -0
  1947. package/node_modules/undici/lib/mock/mock-agent.js +232 -0
  1948. package/node_modules/undici/lib/mock/mock-call-history.js +248 -0
  1949. package/node_modules/undici/lib/mock/mock-client.js +68 -0
  1950. package/node_modules/undici/lib/mock/mock-errors.js +29 -0
  1951. package/node_modules/undici/lib/mock/mock-interceptor.js +209 -0
  1952. package/node_modules/undici/lib/mock/mock-pool.js +68 -0
  1953. package/node_modules/undici/lib/mock/mock-symbols.js +32 -0
  1954. package/node_modules/undici/lib/mock/mock-utils.js +486 -0
  1955. package/node_modules/undici/lib/mock/pending-interceptors-formatter.js +43 -0
  1956. package/node_modules/undici/lib/mock/snapshot-agent.js +353 -0
  1957. package/node_modules/undici/lib/mock/snapshot-recorder.js +588 -0
  1958. package/node_modules/undici/lib/mock/snapshot-utils.js +158 -0
  1959. package/node_modules/undici/lib/util/cache.js +414 -0
  1960. package/node_modules/undici/lib/util/date.js +653 -0
  1961. package/node_modules/undici/lib/util/promise.js +28 -0
  1962. package/node_modules/undici/lib/util/runtime-features.js +124 -0
  1963. package/node_modules/undici/lib/util/stats.js +32 -0
  1964. package/node_modules/undici/lib/util/timers.js +425 -0
  1965. package/node_modules/undici/lib/web/cache/cache.js +864 -0
  1966. package/node_modules/undici/lib/web/cache/cachestorage.js +152 -0
  1967. package/node_modules/undici/lib/web/cache/util.js +45 -0
  1968. package/node_modules/undici/lib/web/cookies/constants.js +12 -0
  1969. package/node_modules/undici/lib/web/cookies/index.js +199 -0
  1970. package/node_modules/undici/lib/web/cookies/parse.js +314 -0
  1971. package/node_modules/undici/lib/web/cookies/util.js +282 -0
  1972. package/node_modules/undici/lib/web/eventsource/eventsource-stream.js +399 -0
  1973. package/node_modules/undici/lib/web/eventsource/eventsource.js +501 -0
  1974. package/node_modules/undici/lib/web/eventsource/util.js +29 -0
  1975. package/node_modules/undici/lib/web/fetch/LICENSE +21 -0
  1976. package/node_modules/undici/lib/web/fetch/body.js +509 -0
  1977. package/node_modules/undici/lib/web/fetch/constants.js +131 -0
  1978. package/node_modules/undici/lib/web/fetch/data-url.js +596 -0
  1979. package/node_modules/undici/lib/web/fetch/formdata-parser.js +586 -0
  1980. package/node_modules/undici/lib/web/fetch/formdata.js +259 -0
  1981. package/node_modules/undici/lib/web/fetch/global.js +40 -0
  1982. package/node_modules/undici/lib/web/fetch/headers.js +719 -0
  1983. package/node_modules/undici/lib/web/fetch/index.js +2413 -0
  1984. package/node_modules/undici/lib/web/fetch/request.js +1115 -0
  1985. package/node_modules/undici/lib/web/fetch/response.js +641 -0
  1986. package/node_modules/undici/lib/web/fetch/util.js +1522 -0
  1987. package/node_modules/undici/lib/web/infra/index.js +229 -0
  1988. package/node_modules/undici/lib/web/subresource-integrity/Readme.md +9 -0
  1989. package/node_modules/undici/lib/web/subresource-integrity/subresource-integrity.js +307 -0
  1990. package/node_modules/undici/lib/web/webidl/index.js +1006 -0
  1991. package/node_modules/undici/lib/web/websocket/connection.js +329 -0
  1992. package/node_modules/undici/lib/web/websocket/constants.js +126 -0
  1993. package/node_modules/undici/lib/web/websocket/events.js +331 -0
  1994. package/node_modules/undici/lib/web/websocket/frame.js +133 -0
  1995. package/node_modules/undici/lib/web/websocket/permessage-deflate.js +100 -0
  1996. package/node_modules/undici/lib/web/websocket/receiver.js +507 -0
  1997. package/node_modules/undici/lib/web/websocket/sender.js +109 -0
  1998. package/node_modules/undici/lib/web/websocket/stream/websocketerror.js +104 -0
  1999. package/node_modules/undici/lib/web/websocket/stream/websocketstream.js +498 -0
  2000. package/node_modules/undici/lib/web/websocket/util.js +347 -0
  2001. package/node_modules/undici/lib/web/websocket/websocket.js +758 -0
  2002. package/node_modules/undici/package.json +152 -0
  2003. package/node_modules/undici/scripts/strip-comments.js +10 -0
  2004. package/node_modules/undici/types/README.md +6 -0
  2005. package/node_modules/undici/types/agent.d.ts +32 -0
  2006. package/node_modules/undici/types/api.d.ts +43 -0
  2007. package/node_modules/undici/types/balanced-pool.d.ts +30 -0
  2008. package/node_modules/undici/types/cache-interceptor.d.ts +179 -0
  2009. package/node_modules/undici/types/cache.d.ts +36 -0
  2010. package/node_modules/undici/types/client-stats.d.ts +15 -0
  2011. package/node_modules/undici/types/client.d.ts +139 -0
  2012. package/node_modules/undici/types/connector.d.ts +36 -0
  2013. package/node_modules/undici/types/content-type.d.ts +21 -0
  2014. package/node_modules/undici/types/cookies.d.ts +30 -0
  2015. package/node_modules/undici/types/diagnostics-channel.d.ts +74 -0
  2016. package/node_modules/undici/types/dispatcher.d.ts +275 -0
  2017. package/node_modules/undici/types/env-http-proxy-agent.d.ts +22 -0
  2018. package/node_modules/undici/types/errors.d.ts +177 -0
  2019. package/node_modules/undici/types/eventsource.d.ts +66 -0
  2020. package/node_modules/undici/types/fetch.d.ts +231 -0
  2021. package/node_modules/undici/types/formdata.d.ts +114 -0
  2022. package/node_modules/undici/types/global-dispatcher.d.ts +9 -0
  2023. package/node_modules/undici/types/global-origin.d.ts +7 -0
  2024. package/node_modules/undici/types/h2c-client.d.ts +73 -0
  2025. package/node_modules/undici/types/handlers.d.ts +14 -0
  2026. package/node_modules/undici/types/header.d.ts +160 -0
  2027. package/node_modules/undici/types/index.d.ts +91 -0
  2028. package/node_modules/undici/types/interceptors.d.ts +80 -0
  2029. package/node_modules/undici/types/mock-agent.d.ts +68 -0
  2030. package/node_modules/undici/types/mock-call-history.d.ts +111 -0
  2031. package/node_modules/undici/types/mock-client.d.ts +27 -0
  2032. package/node_modules/undici/types/mock-errors.d.ts +12 -0
  2033. package/node_modules/undici/types/mock-interceptor.d.ts +94 -0
  2034. package/node_modules/undici/types/mock-pool.d.ts +27 -0
  2035. package/node_modules/undici/types/patch.d.ts +29 -0
  2036. package/node_modules/undici/types/pool-stats.d.ts +19 -0
  2037. package/node_modules/undici/types/pool.d.ts +41 -0
  2038. package/node_modules/undici/types/proxy-agent.d.ts +29 -0
  2039. package/node_modules/undici/types/readable.d.ts +68 -0
  2040. package/node_modules/undici/types/retry-agent.d.ts +8 -0
  2041. package/node_modules/undici/types/retry-handler.d.ts +125 -0
  2042. package/node_modules/undici/types/round-robin-pool.d.ts +41 -0
  2043. package/node_modules/undici/types/snapshot-agent.d.ts +109 -0
  2044. package/node_modules/undici/types/socks5-proxy-agent.d.ts +25 -0
  2045. package/node_modules/undici/types/util.d.ts +18 -0
  2046. package/node_modules/undici/types/utility.d.ts +7 -0
  2047. package/node_modules/undici/types/webidl.d.ts +347 -0
  2048. package/node_modules/undici/types/websocket.d.ts +188 -0
  2049. package/node_modules/which/LICENSE +15 -0
  2050. package/node_modules/which/README.md +51 -0
  2051. package/node_modules/which/bin/which.js +52 -0
  2052. package/node_modules/which/lib/index.js +111 -0
  2053. package/node_modules/which/package.json +57 -0
  2054. package/node_modules/yocto-spinner/index.d.ts +162 -0
  2055. package/node_modules/yocto-spinner/index.js +428 -0
  2056. package/node_modules/yocto-spinner/license +9 -0
  2057. package/node_modules/yocto-spinner/package.json +64 -0
  2058. package/node_modules/yocto-spinner/readme.md +237 -0
  2059. package/node_modules/yoctocolors/base.d.ts +47 -0
  2060. package/node_modules/yoctocolors/base.js +94 -0
  2061. package/node_modules/yoctocolors/index.d.ts +2 -0
  2062. package/node_modules/yoctocolors/index.js +2 -0
  2063. package/node_modules/yoctocolors/license +9 -0
  2064. package/node_modules/yoctocolors/package.json +69 -0
  2065. package/node_modules/yoctocolors/readme.md +138 -0
  2066. package/package.json +20 -2
@@ -0,0 +1,2104 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ [Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.74.3...main)
6
+
7
+ ## [1.74.3](https://github.com/dotenvx/dotenvx/compare/v1.74.2...v1.74.3) (2026-06-19)
8
+
9
+ ### Changed
10
+
11
+ * Bundle dotenvx with `@dotenvx/next-env` for user convenience ([#845](https://github.com/dotenvx/dotenvx/pull/845))
12
+
13
+ ## [1.74.2](https://github.com/dotenvx/dotenvx/compare/v1.74.1...v1.74.2) (2026-06-18)
14
+
15
+ ### Changed
16
+
17
+ * Fix provenance for `@dotenvx/next-env` ([#844](https://github.com/dotenvx/dotenvx/pull/844))
18
+
19
+ ## [1.74.1](https://github.com/dotenvx/dotenvx/compare/v1.74.0...v1.74.1) (2026-06-18)
20
+
21
+ ### Added
22
+
23
+ * Add README for `@dotenvx/next-env` ([#843](https://github.com/dotenvx/dotenvx/pull/843))
24
+
25
+ ## [1.74.0](https://github.com/dotenvx/dotenvx/compare/v1.73.1...v1.74.0) (2026-06-18)
26
+
27
+ ### Added
28
+
29
+ * Additionally publish [`@dotenvx/next-env`](https://www.npmjs.com/package/@dotenvx/next-env) override ([#841](https://github.com/dotenvx/dotenvx/pull/841))
30
+
31
+ ## [1.73.1](https://github.com/dotenvx/dotenvx/compare/v1.73.0...v1.73.1) (2026-06-16)
32
+
33
+ ### Changed
34
+
35
+ * Give update available notification only for armor commands ([#840](https://github.com/dotenvx/dotenvx/pull/840))
36
+
37
+ ## [1.73.0](https://github.com/dotenvx/dotenvx/compare/v1.72.0...v1.73.0) (2026-06-16)
38
+
39
+ ### Added
40
+
41
+ * Add `dotenvx armor` commands directly inside dotenvx ([#839](https://github.com/dotenvx/dotenvx/pull/839))
42
+
43
+ > `dotenvx` remains local-first: `armor` commands are optional under professional security section
44
+
45
+ ## [1.72.0](https://github.com/dotenvx/dotenvx/compare/v1.71.3...v1.72.0) (2026-06-15)
46
+
47
+ ### Added
48
+
49
+ * Move `armor login` command to first class `dotenvx login` command. ([#836](https://github.com/dotenvx/dotenvx/pull/836))
50
+ * `dotenvx` remains local-first: login is optional and only needed when you want Armor features like moving keys off-device, team sharing, and audit access.
51
+ * Patch 2 high severity dependencies ([#837](https://github.com/dotenvx/dotenvx/pull/837))
52
+
53
+ ## [1.71.3](https://github.com/dotenvx/dotenvx/compare/v1.71.2...v1.71.3) (2026-06-11)
54
+
55
+ ### Changed
56
+
57
+ * Forward command to Dotenvx Armor Key Guard approvals ([#835](https://github.com/dotenvx/dotenvx/pull/835))
58
+
59
+ ## [1.71.2](https://github.com/dotenvx/dotenvx/compare/v1.71.1...v1.71.2) (2026-06-08)
60
+
61
+ ### Changed
62
+
63
+ * touch up `get`, `set`, and `decrypt` when armor installed ([#834](https://github.com/dotenvx/dotenvx/pull/834))
64
+
65
+ ## [1.71.1](https://github.com/dotenvx/dotenvx/compare/v1.71.0...v1.71.1) (2026-06-08)
66
+
67
+ ### Changed
68
+
69
+ * stderr changed to `inherit` for dotenvx-armor integration ([#833](https://github.com/dotenvx/dotenvx/pull/833))
70
+
71
+ ## [1.71.0](https://github.com/dotenvx/dotenvx/compare/v1.70.0...v1.71.0) (2026-06-01)
72
+
73
+ ### Added
74
+
75
+ * Add optional automation `--token` support for Armor ⛨ users ([#831](https://github.com/dotenvx/dotenvx/pull/831))
76
+
77
+ ## [1.70.0](https://github.com/dotenvx/dotenvx/compare/v1.69.2...v1.70.0) (2026-05-31)
78
+
79
+ ### Changed
80
+
81
+ * Dotenvx Ops/Vlt is now Dotenvx Armor ⛨ ([#830](https://github.com/dotenvx/dotenvx/pull/830))
82
+
83
+ ## [1.69.2](https://github.com/dotenvx/dotenvx/compare/v1.69.1...v1.69.2) (2026-05-29)
84
+
85
+ ### Changed
86
+
87
+ * Minor messaging improvements, especially if using armored keys ([#825](https://github.com/dotenvx/dotenvx/pull/825))
88
+
89
+ ## [1.69.1](https://github.com/dotenvx/dotenvx/compare/v1.69.0...v1.69.1) (2026-05-25)
90
+
91
+ ### Changed
92
+
93
+ * Internally rename `ops` to `vlt` ([#823](https://github.com/dotenvx/dotenvx/pull/823))
94
+
95
+ ## [1.69.0](https://github.com/dotenvx/dotenvx/compare/v1.68.1...v1.69.0) (2026-05-25)
96
+
97
+ ### Changed
98
+
99
+ * Remove fully-deprecated `opsOff` option in favor of `noOps` ([#822](https://github.com/dotenvx/dotenvx/pull/822))
100
+
101
+ ## [1.68.1](https://github.com/dotenvx/dotenvx/compare/v1.68.0...v1.68.1) (2026-05-24)
102
+
103
+ ### Changed
104
+
105
+ * Pass `-f` to ops ([#821](https://github.com/dotenvx/dotenvx/pull/821))
106
+
107
+ ## [1.68.0](https://github.com/dotenvx/dotenvx/compare/v1.67.0...v1.68.0) (2026-05-24)
108
+
109
+ ### Changed
110
+
111
+ * Support `ignore` option on `parse` ([#820](https://github.com/dotenvx/dotenvx/pull/820))
112
+
113
+ ## [1.67.0](https://github.com/dotenvx/dotenvx/compare/v1.66.0...v1.67.0) (2026-05-21)
114
+
115
+ ### Added
116
+
117
+ * Add prompt for local storage vs armored storage ([#819](https://github.com/dotenvx/dotenvx/pull/819))
118
+
119
+ ## [1.66.0](https://github.com/dotenvx/dotenvx/compare/v1.65.3...v1.66.0) (2026-05-13)
120
+
121
+ ### Added
122
+
123
+ * Add `dotenvx doctor` ([#815](https://github.com/dotenvx/dotenvx/pull/815))
124
+
125
+ ## [1.65.3](https://github.com/dotenvx/dotenvx/compare/v1.65.2...v1.65.3) (2026-05-13)
126
+
127
+ ### Changed
128
+
129
+ * Improve spinner message blinking with simpler `--no-spinner` flag passed to ops ([#814](https://github.com/dotenvx/dotenvx/pull/814))
130
+
131
+ ## [1.65.2](https://github.com/dotenvx/dotenvx/compare/v1.65.1...v1.65.2) (2026-05-13)
132
+
133
+ ### Changed
134
+
135
+ * Improve spinner message coordination between `dotenvx` and `dotenvx-ops` ([#813](https://github.com/dotenvx/dotenvx/pull/813))
136
+
137
+ ## [1.65.1](https://github.com/dotenvx/dotenvx/compare/v1.65.0...v1.65.1) (2026-05-13)
138
+
139
+ ### Changed
140
+
141
+ * Prompts from `ops` should bubble up ([#812](https://github.com/dotenvx/dotenvx/pull/812))
142
+
143
+ ## [1.65.0](https://github.com/dotenvx/dotenvx/compare/v1.64.0...v1.65.0) (2026-05-05)
144
+
145
+ ### Added
146
+
147
+ * Add support for `replace`ing duplicate keys with different values ([#806](https://github.com/dotenvx/dotenvx/pull/806))
148
+
149
+ ## [1.64.0](https://github.com/dotenvx/dotenvx/compare/v1.63.0...v1.64.0) (2026-04-27)
150
+
151
+ ### Added
152
+
153
+ * Add optional `dotenvx armor` command.
154
+ * `armor up` armor private key
155
+ * `armor down` dearmor private key
156
+ * `armor push` push armored key (from .env.keys)
157
+ * `armor pull` pull armored key (into .env.keys)
158
+
159
+ Move private keys off device and under access control with Dotenvx Ops ⛨. [Learn more](https://dotenvx.com/ops)
160
+
161
+ ## [1.63.0](https://github.com/dotenvx/dotenvx/compare/v1.62.0...v1.63.0) (2026-04-24)
162
+
163
+ ### Added
164
+
165
+ * Add support for encrypted values passed to `--env` flag ([#804](https://github.com/dotenvx/dotenvx/pull/804))
166
+ * Add support for `--format=colon` in order to support cloudflare's wrangler `--var` flag format ([#804](https://github.com/dotenvx/dotenvx/pull/804))
167
+
168
+ ## [1.62.0](https://github.com/dotenvx/dotenvx/compare/v1.61.6...v1.62.0) (2026-04-23)
169
+
170
+ ### Added
171
+
172
+ * Add support for `config({ envs })`. unlocks simpler cloudflare worker integration ([#803](https://github.com/dotenvx/dotenvx/pull/803))
173
+
174
+ ```sh
175
+ $ dotenvx encrypt -f .env.txt
176
+ ```
177
+ ```js
178
+ // src/index.js
179
+ import envSrc from '../.env.txt'
180
+ import dotenvx from '@dotenvx/dotenvx'
181
+
182
+ const config = dotenvx.config({ envs: [{ type: 'env', value: envSrc, privateKeyName: 'DOTENV_PRIVATE_KEY' }] })
183
+ const envx = config.parsed
184
+
185
+ export default {
186
+ async fetch(request, env, ctx) {
187
+ return new Response(`Hello ${envx.HELLO}`)
188
+ }
189
+ }
190
+ ```
191
+ ```json
192
+ "scripts": {
193
+ "deploy": "wrangler deploy",
194
+ "dev": "wrangler dev --var $(dotenvx keypair -f .env.txt --format=colon)",
195
+ "start": "wrangler dev --var $(dotenvx keypair -f .env.txt --format=colon)",
196
+ "test": "vitest"
197
+ },
198
+ ```
199
+
200
+ ## [1.61.6](https://github.com/dotenvx/dotenvx/compare/v1.61.5...v1.61.6) (2026-04-23)
201
+
202
+ ### Changed
203
+
204
+ * Guard against command substitution following `encrypted:` ([#802](https://github.com/dotenvx/dotenvx/pull/802))
205
+
206
+ ## [1.61.5](https://github.com/dotenvx/dotenvx/compare/v1.61.4...v1.61.5) (2026-04-22)
207
+
208
+ ### Changed
209
+
210
+ * Support `--hostname` flag to `dotenvx-ops.login` ([#801](https://github.com/dotenvx/dotenvx/pull/801))
211
+
212
+ ## [1.61.4](https://github.com/dotenvx/dotenvx/compare/v1.61.3...v1.61.4) (2026-04-21)
213
+
214
+ ### Changed
215
+
216
+ * Respect SIGINT handler completion ([#798](https://github.com/dotenvx/dotenvx/pull/798))
217
+
218
+ ## [1.61.3](https://github.com/dotenvx/dotenvx/compare/v1.61.2...v1.61.3) (2026-04-21)
219
+
220
+ ### Changed
221
+
222
+ * Tighten up `ext precommit --install` message ([#797](https://github.com/dotenvx/dotenvx/pull/797))
223
+
224
+ ## [1.61.2](https://github.com/dotenvx/dotenvx/compare/v1.61.1...v1.61.2) (2026-04-21)
225
+
226
+ ### Changed
227
+
228
+ * For Ops ⛨ users surface stderr ([#796](https://github.com/dotenvx/dotenvx/pull/796))
229
+
230
+ ## [1.61.1](https://github.com/dotenvx/dotenvx/compare/v1.61.0...v1.61.1) (2026-04-17)
231
+
232
+ ### Changed
233
+
234
+ * Faster coldstarts! ([#781](https://github.com/dotenvx/dotenvx/pull/781))
235
+ * Patch `dotenvx precommit|prebuild` shorthand ([#793](https://github.com/dotenvx/dotenvx/pull/793))
236
+
237
+ ## [1.61.0](https://github.com/dotenvx/dotenvx/compare/v1.60.2...v1.61.0) (2026-04-08)
238
+
239
+ ### Added
240
+
241
+ * Add `login` and `logout` method that proxy to `dotenvx-ops login/logout` ([#780](https://github.com/dotenvx/dotenvx/pull/780))
242
+ * Note: dotenvx continues to make zero outgoing HTTP requests and includes no telemetry. Outgoing requests occur only if you explicitly install the [dotenvx-ops](https://dotenvx.com/ops) SDK or CLI.
243
+
244
+ ## [1.60.2](https://github.com/dotenvx/dotenvx/compare/v1.60.1...v1.60.2) (2026-04-07)
245
+
246
+ ### Changed
247
+
248
+ * Communicate `local key` and `armored key` (for Ops stored keys) ([#778](https://github.com/dotenvx/dotenvx/pull/778))
249
+
250
+ ## [1.60.1](https://github.com/dotenvx/dotenvx/compare/v1.60.0...v1.60.1) (2026-04-06)
251
+
252
+ ### Added
253
+
254
+ * Added missing `+ key ⛨` for Ops stored keys ([#777](https://github.com/dotenvx/dotenvx/pull/777))
255
+
256
+ ## [1.60.0](https://github.com/dotenvx/dotenvx/compare/v1.59.1...v1.60.0) (2026-04-04)
257
+
258
+ ### Added
259
+
260
+ * Add spinner with loading messages
261
+ * `injecting` (`run`)
262
+ * `encrypting` (`encrypt`, `set`)
263
+ * `decrypting` (`decrypt`, `get`)
264
+ * `rotating` (`rotate`)
265
+ * `retrieving` (`keypair`)
266
+
267
+ ## [1.59.1](https://github.com/dotenvx/dotenvx/compare/v1.59.0...v1.59.1) (2026-03-28)
268
+
269
+ ### Added
270
+
271
+ * add `HELLO` key to the kit sample to match most of our examples in the README
272
+
273
+ ## [1.59.0](https://github.com/dotenvx/dotenvx/compare/v1.58.0...v1.59.0) (2026-03-28)
274
+
275
+ ### Changed
276
+
277
+ * `encrypt` and `set` now create a `.env` file if one does not exist ([#771](https://github.com/dotenvx/dotenvx/pull/771))
278
+ * pass `--no-create` to prevent file creation
279
+
280
+ ## [1.58.0](https://github.com/dotenvx/dotenvx/compare/v1.57.5...v1.58.0) (2026-03-27)
281
+
282
+ ### Changed
283
+
284
+ * Changed runtime injection message to format `⟐ injecting env (N) from FILE · dotenvx@VERSION` ([#770](https://github.com/dotenvx/dotenvx/pull/770))
285
+
286
+ ## [1.57.5](https://github.com/dotenvx/dotenvx/compare/v1.57.4...v1.57.5) (2026-03-26)
287
+
288
+ ### Changes
289
+
290
+ * Improve already installed message ([#768](https://github.com/dotenvx/dotenvx/pull/768))
291
+
292
+ ## [1.57.4](https://github.com/dotenvx/dotenvx/compare/v1.57.3...v1.57.4) (2026-03-26)
293
+
294
+ ### Changes
295
+
296
+ * Use `curl` example for install [dotenvx.com/ops](https://dotenvx.com/ops) ([#767](https://github.com/dotenvx/dotenvx/pull/767))
297
+
298
+ ## [1.57.3](https://github.com/dotenvx/dotenvx/compare/v1.57.2...v1.57.3) (2026-03-26)
299
+
300
+ ### Changes
301
+
302
+ * Simplify installed success message ([#766](https://github.com/dotenvx/dotenvx/pull/766))
303
+
304
+ ## [1.57.2](https://github.com/dotenvx/dotenvx/compare/v1.57.1...v1.57.2) (2026-03-22)
305
+
306
+ ### Changes
307
+
308
+ * Ran `npm audit` to update package-lock.json ([#763](https://github.com/dotenvx/dotenvx/pull/763))
309
+
310
+ ## [1.57.1](https://github.com/dotenvx/dotenvx/compare/v1.57.0...v1.57.1) (2026-03-21)
311
+
312
+ ### Changes
313
+
314
+ * improved error logs and compacted most to a single line ([#755](https://github.com/dotenvx/dotenvx/pull/755))
315
+ * introduced leading log glyphs as a visual status language:
316
+
317
+ * `⟐` success action (injected)
318
+ * `◈` success action (encrypted)
319
+ * `◇` success action (set plain value, decrypted)
320
+ * `⟳` success action (rotated)
321
+ * `○` informational no-op (no changes)
322
+ * `▣` success action for generated/updated support files
323
+ * `⚠` warning
324
+ * `☠` error
325
+
326
+ ## [1.57.0](https://github.com/dotenvx/dotenvx/compare/v1.56.0...v1.57.0) (2026-03-19)
327
+
328
+ ### Changed
329
+
330
+ * color and formatting changes to outputs ([#754](https://github.com/dotenvx/dotenvx/pull/754))
331
+
332
+ ## [1.56.0](https://github.com/dotenvx/dotenvx/compare/v1.55.1...v1.56.0) (2026-03-19)
333
+
334
+ ### Changed
335
+
336
+ * `ops off` flag — now respected by `get`, `keypair`, `rotate`, and `encrypt` ([#750](https://github.com/dotenvx/dotenvx/pull/750))
337
+ * `--pp` alias — added as shorthand for `--pretty-print`; toward sunsetting `-pp` ([#750](https://github.com/dotenvx/dotenvx/pull/750))
338
+
339
+ ### Removed
340
+
341
+ * Remove support for `.env.vault` files ([#750](https://github.com/dotenvx/dotenvx/pull/750))
342
+
343
+ ## [1.55.1](https://github.com/dotenvx/dotenvx/compare/v1.55.0...v1.55.1) (2026-03-13)
344
+
345
+ ### Added
346
+
347
+ * Respect `dotenvx-ops status (on|off)` ([#749](https://github.com/dotenvx/dotenvx/pull/749))
348
+
349
+ ## [1.55.0](https://github.com/dotenvx/dotenvx/compare/v1.54.1...v1.55.0) (2026-03-13)
350
+
351
+ ### Added
352
+
353
+ * Add '⛨ ARMORED KEYS: Harden your private keys.' security feature when [dotenvx-ops](https://dotenvx.com/ops) installed ([#746](https://github.com/dotenvx/dotenvx/pull/746))
354
+
355
+ ### Removed
356
+
357
+ * Remove `ProKeypair` logic
358
+
359
+ ## [1.54.1](https://github.com/dotenvx/dotenvx/compare/v1.54.0...v1.54.1) (2026-03-06)
360
+
361
+ ### Changed
362
+
363
+ * Fix npm publish
364
+
365
+ ## [1.54.0](https://github.com/dotenvx/dotenvx/compare/v1.53.0...v1.54.0) (2026-03-06)
366
+
367
+ ### Removed
368
+
369
+ * Remove `ops observe` (radar feature). If needed download [dotenvx-ops](https://dotenvx.com/ops) and reach out to me directly at mot@dotenvx.com. ([#745](https://github.com/dotenvx/dotenvx/pull/745))
370
+
371
+ ## [1.53.0](https://github.com/dotenvx/dotenvx/compare/v1.52.0...v1.53.0) (2026-03-05)
372
+
373
+ ### Removed
374
+
375
+ * Remove `radar`. It has been a year since replaced by `ops`. ([#743](https://github.com/dotenvx/dotenvx/pull/743))
376
+
377
+ ## [1.52.0](https://github.com/dotenvx/dotenvx/compare/v1.51.4...v1.52.0) (2026-01-22)
378
+
379
+ ### Added
380
+
381
+ * Pass log level options to `main.set` ([#731](https://github.com/dotenvx/dotenvx/pull/731))
382
+
383
+ ## [1.51.4](https://github.com/dotenvx/dotenvx/compare/v1.51.3...v1.51.4) (2025-12-29)
384
+
385
+ ### Changed
386
+
387
+ * Change description of `dotenvx-ops` to better reflect its tooling as operational primitives on top of dotenvx for production use cases. ([#721](https://github.com/dotenvx/dotenvx/pull/723))
388
+
389
+ ## [1.51.3](https://github.com/dotenvx/dotenvx/compare/v1.51.2...v1.51.3) (2025-12-29)
390
+
391
+ ### Added
392
+
393
+ * Add hint on `.env.keys` for `dotenvx armor up`. Dotenvx Armor lets you armor your private keys securely with just a single command. It's a convenient alternative to manually copy/pasting them in and out of 1Password. ([#718](https://github.com/dotenvx/dotenvx/pull/718))
394
+
395
+ ## [1.51.2](https://github.com/dotenvx/dotenvx/compare/v1.51.1...v1.51.2) (2025-12-12)
396
+
397
+ ### Changed
398
+
399
+ * Switch `npm publish` to use [Dotenvx Ops'](https://dotenvx.com/ops) new Rotation Tokens (ROTs) ([#715](https://github.com/dotenvx/dotenvx/pull/715))
400
+
401
+ > This will allow us to start dogfooding our own solution for third-party API key rotation. Third-party API key rotation would drastically improve security industry wide. Please [get in touch](https://dotenvx.com/support) if this is interesting to you.
402
+
403
+ ## [1.51.1](https://github.com/dotenvx/dotenvx/compare/v1.51.0...v1.51.1) (2025-11-03)
404
+
405
+ ### Added
406
+
407
+ * Add `opsOff` type information
408
+
409
+ ## [1.51.0](https://github.com/dotenvx/dotenvx/compare/v1.50.1...v1.51.0) (2025-09-23)
410
+
411
+ ### Added
412
+
413
+ * Add `config({opsOff: true})` options and `--ops-off` flag for turning off [Dotenvx Ops](https://dotenvx.com/ops) features. ([#680](https://github.com/dotenvx/dotenvx/pull/680))
414
+
415
+ ## [1.50.1](https://github.com/dotenvx/dotenvx/compare/v1.50.0...v1.50.1) (2025-09-18)
416
+
417
+ ### Removed
418
+
419
+ * Remove listed command to `radar` (now `ops`) ([#678](https://github.com/dotenvx/dotenvx/pull/678))
420
+
421
+ ## [1.50.0](https://github.com/dotenvx/dotenvx/compare/v1.49.1...v1.50.0) (2025-09-18)
422
+
423
+ ### Added
424
+
425
+ * Add optional `dotenvx ops` command ([#677](https://github.com/dotenvx/dotenvx/pull/677))
426
+ * Ops is a coming rename of Radar. Radar will become a feature inside ops.
427
+ * With `dotenvx ops` use dotenvx across your team, infrastructure, agents, and more.
428
+
429
+ ```
430
+ _______________________________________________________________________
431
+ | |
432
+ | dotenvx-ops: production grade dotenvx–with operational primitives |
433
+ | |
434
+ | ░▒▓██████▓▒░░▒▓███████▓▒░ ░▒▓███████▓▒░ |
435
+ | ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ |
436
+ | ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ |
437
+ | ░▒▓█▓▒░░▒▓█▓▒░▒▓███████▓▒░ ░▒▓██████▓▒░ |
438
+ | ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░ |
439
+ | ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░ |
440
+ | ░▒▓██████▓▒░░▒▓█▓▒░ ░▒▓███████▓▒░ |
441
+ | |
442
+ | Learn more at https://dotenvx.com/ops |
443
+ |_______________________________________________________________________|
444
+ ```
445
+
446
+ ## [1.49.1](https://github.com/dotenvx/dotenvx/compare/v1.49.0...v1.49.1) (2025-09-15)
447
+
448
+ ### Changed
449
+
450
+ * 🐞 patch bug with variable expansion of single quoted values ([#675](https://github.com/dotenvx/dotenvx/pull/675))
451
+
452
+ ## [1.49.0](https://github.com/dotenvx/dotenvx/compare/v1.48.4...v1.49.0) (2025-08-18)
453
+
454
+ ### Added
455
+
456
+ * For precommit and prebuild, ignore `.env.x` file like we do with `.env.vault` file. ([#666](https://github.com/dotenvx/dotenvx/pull/666))
457
+
458
+ ## [1.48.4](https://github.com/dotenvx/dotenvx/compare/v1.48.3...v1.48.4) (2025-07-29)
459
+
460
+ ### Removed
461
+
462
+ * Remove unnecessary use of `eval` in proKeypair helper ([#654](https://github.com/dotenvx/dotenvx/pull/654))
463
+
464
+ ## 1.48.3 (2025-07-21)
465
+
466
+ ### Changed
467
+
468
+ * Include `privateKeyName` and `privateKey` on internal `processedEnv` object ([#649](https://github.com/dotenvx/dotenvx/pull/649))
469
+
470
+ ## 1.48.2 (2025-07-20)
471
+
472
+ ### Changed
473
+
474
+ * Check radar status before sending ([#646](https://github.com/dotenvx/dotenvx/pull/646))
475
+
476
+ ## 1.48.1 (2025-07-19)
477
+
478
+ ### Changed
479
+
480
+ * Send `beforEnv` and `afterEnv` to Radar if user has installed ([#645](https://github.com/dotenvx/dotenvx/pull/645))
481
+
482
+ ## 1.48.0 (2025-07-17)
483
+
484
+ ### Added
485
+
486
+ * Include `beforeEnv` and `afterEnv` for user debugging ([#644](https://github.com/dotenvx/dotenvx/pull/644))
487
+
488
+ ## 1.47.7 (2025-07-17)
489
+
490
+ ### Changed
491
+
492
+ * `src` should be in internal `processEnv` object ([#643](https://github.com/dotenvx/dotenvx/pull/643))
493
+
494
+ ## 1.47.6 (2025-07-14)
495
+
496
+ ### Changed
497
+
498
+ * Make Radar call non-blocking ([#642](https://github.com/dotenvx/dotenvx/pull/642))
499
+
500
+ ## 1.47.5 (2025-07-11)
501
+
502
+ ### Changed
503
+
504
+ * Add resilient handling of any Radar failures ([#639](https://github.com/dotenvx/dotenvx/pull/639))
505
+
506
+ ## 1.47.4 (2025-07-11)
507
+
508
+ ### Changed
509
+
510
+ * Smarter require of non-installed libs like [`dotenvx-radar`](https://dotenvx.com/radar) ([#638](https://github.com/dotenvx/dotenvx/pull/638))
511
+
512
+ ## 1.47.3 (2025-07-09)
513
+
514
+ ### Added
515
+
516
+ * Send to `radar#observe` if [Radar](https://dotenvx.com/radar) installed by user ([#631](https://github.com/dotenvx/dotenvx/pull/631))
517
+
518
+ ### Removed
519
+
520
+ * Remove `cli` in package.json ([#632](https://github.com/dotenvx/dotenvx/pull/632))
521
+
522
+ ## 1.47.2 (2025-07-09)
523
+
524
+ ### Added
525
+
526
+ * Export `cli` in package.json ([#629](https://github.com/dotenvx/dotenvx/pull/629))
527
+
528
+ ## 1.47.1 (2025-07-08)
529
+
530
+ ### Added
531
+
532
+ * Add convenience log that `radar active 📡` when dotenvx-radar is installed ([#625](https://github.com/dotenvx/dotenvx/pull/625))
533
+
534
+ ## 1.47.0 (2025-07-08)
535
+
536
+ ### Added
537
+
538
+ * Add optional `dotenvx radar` command ([#624](https://github.com/dotenvx/dotenvx/pull/624))
539
+ * Radar is an early access commercial extension for dotenvx that will auto backup your .env files.
540
+
541
+ ```
542
+ _______________________________________________________________________
543
+ | |
544
+ | Dotenvx Radar: Env Observability |
545
+ | |
546
+ | ░▒▓███████▓▒░ ░▒▓██████▓▒░░▒▓███████▓▒░ ░▒▓██████▓▒░░▒▓███████▓▒░ |
547
+ | ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░ |
548
+ | ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░ |
549
+ | ░▒▓███████▓▒░░▒▓████████▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓████████▓▒░▒▓███████▓▒░ |
550
+ | ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░ |
551
+ | ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░ |
552
+ | ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓███████▓▒░░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░ |
553
+ | |
554
+ | Observe, version, and back up your environment variables at runtime. |
555
+ | |
556
+ | Purchase lifetime access at https://dotenvx.com/radar |
557
+ | |
558
+ | --------------------------------------------------------------------- |
559
+ | - thank you for using dotenvx! - @motdotla |
560
+ |_______________________________________________________________________|
561
+ ```
562
+
563
+ ## 1.46.0 (2025-07-07)
564
+
565
+ ### Added
566
+
567
+ * Add error when hoisting issue experienced around commander.js ([#623](https://github.com/dotenvx/dotenvx/pull/623))
568
+
569
+ ### Removed
570
+
571
+ * Remove `git-dotenvx` and `git dotenvx` shorthand ([#621](https://github.com/dotenvx/dotenvx/pull/621))
572
+
573
+ ## 1.45.2 (2025-07-01)
574
+
575
+ ### Changed
576
+
577
+ * Minor README updates
578
+
579
+ ## 1.45.1 (2025-06-20)
580
+
581
+ ### Changed
582
+
583
+ * Include `setLogName` and `setLogVersion` in `config` ([#613](https://github.com/dotenvx/dotenvx/pull/613))
584
+
585
+ ## 1.45.0 (2025-06-20)
586
+
587
+ ### Added
588
+
589
+ * Add `logger.setName` and `logger.setVersion` for customization of logger ([#612](https://github.com/dotenvx/dotenvx/pull/612))
590
+
591
+ ## 1.44.2 (2025-06-10)
592
+
593
+ ### Changed
594
+
595
+ * Clarify license is BSD-3.
596
+
597
+ ## [1.44.1](https://github.com/dotenvx/dotenvx/compare/v1.44.0...v1.44.1) (2025-05-19)
598
+
599
+ ### Changed
600
+
601
+ * Patch `SetOutput` type ([#597](https://github.com/dotenvx/dotenvx/pull/597))
602
+
603
+ ## [1.44.0](https://github.com/dotenvx/dotenvx/compare/v1.43.0...v1.44.0) (2025-05-12)
604
+
605
+ ### Added
606
+
607
+ * Add `armv7` support ([#593](https://github.com/dotenvx/dotenvx/pull/593))
608
+
609
+ ## [1.43.0](https://github.com/dotenvx/dotenvx/compare/v1.42.2...v1.43.0) (2025-05-03)
610
+
611
+ ### Removed
612
+
613
+ * Remove `errorv, errornocolor, blank` from logger options ([#584](https://github.com/dotenvx/dotenvx/pull/584))
614
+
615
+ ### Changed
616
+
617
+ * Replace instances of `console.error` with `logger.error` ([#584](https://github.com/dotenvx/dotenvx/pull/584))
618
+
619
+ ## [1.42.2](https://github.com/dotenvx/dotenvx/compare/v1.42.1...v1.42.2) (2025-05-01)
620
+
621
+ ### Changed
622
+
623
+ * Fix `--force` flag work with `?force=true` ([2776715](https://github.com/dotenvx/dotenvx/commit/2776715075928fa534b270cef0554b58b60bcd12))
624
+
625
+ ## [1.42.1](https://github.com/dotenvx/dotenvx/compare/v1.42.0...v1.42.1) (2025-05-01)
626
+
627
+ ### Added
628
+
629
+ * Add `--force` flag to `install.sh` ([0b8d21c](https://github.com/dotenvx/dotenvx/commit/0b8d21c612167354451213ef30e6e1299d91016d))
630
+
631
+ ## [1.42.0](https://github.com/dotenvx/dotenvx/compare/v1.41.0...v1.42.0) (2025-04-30)
632
+
633
+ ### Added
634
+
635
+ * Add ability to override the `os` and `arch` via `install.sh` and `dotenvx.sh` ([3ded752](https://github.com/dotenvx/dotenvx/commit/3ded752fbe60aa4eeebe9fe90a87f35dba502a76))
636
+
637
+ ## [1.41.0](https://github.com/dotenvx/dotenvx/compare/v1.40.1...v1.41.0) (2025-04-18)
638
+
639
+ ### Added
640
+
641
+ * Add [directory] argument to precommit and prebuild ([#572](https://github.com/dotenvx/dotenvx/pull/572))
642
+
643
+ ## [1.40.1](https://github.com/dotenvx/dotenvx/compare/v1.40.0...v1.40.1) (2025-04-16)
644
+
645
+ ### Changed
646
+
647
+ * Patch `ext scan` command ([#570](https://github.com/dotenvx/dotenvx/pull/570))
648
+
649
+ ## [1.40.0](https://github.com/dotenvx/dotenvx/compare/v1.39.1...v1.40.0) (2025-04-13)
650
+
651
+ ### Added
652
+
653
+ * Smarter `ext precommit` and `ext prebuild` – catch duplicate KEYs in the same .env file where one is mistakenly left unencrypted ([#567](https://github.com/dotenvx/dotenvx/pull/567))
654
+
655
+ ## [1.39.1](https://github.com/dotenvx/dotenvx/compare/v1.39.0...v1.39.1) (2025-04-04)
656
+
657
+ ### Added
658
+
659
+ * Add `version` to homebrew formula ([#564](https://github.com/dotenvx/dotenvx/pull/564))
660
+
661
+ ## [1.39.0](https://github.com/dotenvx/dotenvx/compare/v1.38.5...v1.39.0) (2025-03-16)
662
+
663
+ ### Added
664
+
665
+ * Add `--convention flow` option to `dotenvx run` ([#551](https://github.com/dotenvx/dotenvx/pull/551))
666
+
667
+ ### Changed
668
+
669
+ * Fix typos ([#550](https://github.com/dotenvx/dotenvx/pull/550))
670
+
671
+ ## [1.38.5](https://github.com/dotenvx/dotenvx/compare/v1.38.4...v1.38.5) (2025-03-11)
672
+
673
+ ### Added
674
+
675
+ * 🐞 Add `config.d.ts` file to fix type error when loading `dotenvx/dotenvx/config` with dynamic import ([#547](https://github.com/dotenvx/dotenvx/pull/547))
676
+
677
+ ## [1.38.4](https://github.com/dotenvx/dotenvx/compare/v1.38.3...v1.38.4) (2025-03-04)
678
+
679
+ ### Changed
680
+
681
+ * 🐞 Fix blank line disappearing after encrypting empty value ([#542](https://github.com/dotenvx/dotenvx/pull/542))
682
+
683
+ ## [1.38.3](https://github.com/dotenvx/dotenvx/compare/v1.38.2...v1.38.3) (2025-02-25)
684
+
685
+ ### Changed
686
+
687
+ * 🐞 Fix self-referencing expansion when key exists already in `process.env` ([#536](https://github.com/dotenvx/dotenvx/pull/536))
688
+
689
+ ## [1.38.2](https://github.com/dotenvx/dotenvx/compare/v1.38.1...v1.38.2) (2025-02-24)
690
+
691
+ ### Added
692
+
693
+ * Add typescript types for `main.get`.
694
+
695
+ ## [1.38.1](https://github.com/dotenvx/dotenvx/compare/v1.38.0...v1.38.1) (2025-02-24)
696
+
697
+ ### Changed
698
+
699
+ * Support `encrypt` when mutliline contains windows `CRLF` (`\r\n`) ([#534](https://github.com/dotenvx/dotenvx/pull/534))
700
+
701
+ Note: dotenvx will convert these `\r\n` newlines to `\n`. Our recommendation is to stop using `CRLF` - its origin is from typewriter days. Instead, set your editor or gitattributes to use `LF`.
702
+
703
+ ## [1.38.0](https://github.com/dotenvx/dotenvx/compare/v1.37.0...v1.38.0) (2025-02-24)
704
+
705
+ ### Changed
706
+
707
+ * Command substitution failures no longer halt further processing of keys in a .env file ([#533](https://github.com/dotenvx/dotenvx/pull/533))
708
+ * A more helpful error is raised if a command substitution failure occurs ([#533](https://github.com/dotenvx/dotenvx/pull/533))
709
+
710
+ ## [1.37.0](https://github.com/dotenvx/dotenvx/compare/v1.36.0...v1.37.0) (2025-02-20)
711
+
712
+ ### Added
713
+
714
+ * add `dotenvx rotate` command 🎉 ([#530](https://github.com/dotenvx/dotenvx/pull/530))
715
+
716
+ also: [our whitepaper](https://dotenvx.com/dotenvx.pdf) is released as a draft.
717
+
718
+ ## [1.36.0](https://github.com/dotenvx/dotenvx/compare/v1.35.0...v1.36.0) (2025-02-12)
719
+
720
+ ### Changed
721
+
722
+ * `--strict` flag respects (doesn't throw) anything in `--ignore` flag ([#527](https://github.com/dotenvx/dotenvx/pull/527))
723
+
724
+ ## [1.35.0](https://github.com/dotenvx/dotenvx/compare/v1.34.0...v1.35.0) (2025-02-07)
725
+
726
+ ### Added
727
+
728
+ * `npx dotenvx precommit` support as a convenience ([#523](https://github.com/dotenvx/dotenvx/pull/523))
729
+ * `main.get` method ([#524](https://github.com/dotenvx/dotenvx/pull/524))
730
+
731
+ The addition of `main.get` facilitates what we term Decryption at Access, a concept explored in greater detail in our [whitepaper](https://dotenvx.com/dotenvx.pdf).
732
+
733
+ ## [1.34.0](https://github.com/dotenvx/dotenvx/compare/v1.33.0...v1.34.0) (2025-01-25)
734
+
735
+ ### Added
736
+
737
+ * `main.set` method now writes to files ([#517](https://github.com/dotenvx/dotenvx/pull/517))
738
+
739
+ ## [1.33.0](https://github.com/dotenvx/dotenvx/compare/v1.32.1...v1.33.0) (2025-01-13)
740
+
741
+ ### Added
742
+
743
+ * support ESM import convenience `import '@dotenvx/dotenvx/config'` ([#508](https://github.com/dotenvx/dotenvx/pull/508))
744
+
745
+ ## [1.32.1](https://github.com/dotenvx/dotenvx/compare/v1.32.0...v1.32.1) (2025-01-07)
746
+
747
+ ### Changed
748
+
749
+ * remove duplicated help messages ([#504](https://github.com/dotenvx/dotenvx/pull/504))
750
+
751
+ ## [1.32.0](https://github.com/dotenvx/dotenvx/compare/v1.31.3...v1.32.0) (2024-12-27)
752
+
753
+ ### Added
754
+
755
+ * add encrypted check support for `ext prebuild` ([#501](https://github.com/dotenvx/dotenvx/pull/501))
756
+
757
+ ### Changed
758
+
759
+ * modify `ext precommit` to check git modified state as well as git staged state - useful for using `dotenvx ext precommit` without the `--install` flag in automated scripts and ci. ([#499](https://github.com/dotenvx/dotenvx/pull/499))
760
+
761
+ ### Removed
762
+
763
+ * remove internal logger methods `errorvp, errorvpb, warnv, warnvp, warnvpb, successvp, successvpb, help2` ([#501](https://github.com/dotenvx/dotenvx/pull/501))
764
+
765
+ ## [1.31.3](https://github.com/dotenvx/dotenvx/compare/v1.31.2...v1.31.3) (2024-12-20)
766
+
767
+ ### Changed
768
+
769
+ * adjust wingetcreate to use powershell when parsing version
770
+
771
+ ## [1.31.2](https://github.com/dotenvx/dotenvx/compare/v1.31.1...v1.31.2) (2024-12-20)
772
+
773
+ ### Changed
774
+
775
+ * use wingetcreate for releasing to WinGet ([#498](https://github.com/dotenvx/dotenvx/pull/498))
776
+
777
+ ## [1.31.1](https://github.com/dotenvx/dotenvx/compare/v1.31.0...v1.31.1) (2024-12-20)
778
+
779
+ ### Changed
780
+
781
+ * 🐞 fix encryption of values containing explicit `\n` newlines ([#495](https://github.com/dotenvx/dotenvx/pull/495))
782
+
783
+ ## [1.31.0](https://github.com/dotenvx/dotenvx/compare/v1.30.1...v1.31.0) (2024-12-14)
784
+
785
+ ### Added
786
+
787
+ * expose `main.set` function ([#492](https://github.com/dotenvx/dotenvx/pull/492))
788
+ * add missing types for `main.config` ([#491](https://github.com/dotenvx/dotenvx/pull/491))
789
+
790
+ ## [1.30.1](https://github.com/dotenvx/dotenvx/compare/v1.30.0...v1.30.1) (2024-12-13)
791
+
792
+ ### Added
793
+
794
+ * support complex command substitution combining variable expansion ([#490](https://github.com/dotenvx/dotenvx/pull/490))
795
+
796
+ ## [1.30.0](https://github.com/dotenvx/dotenvx/compare/v1.29.0...v1.30.0) (2024-12-13)
797
+
798
+ ### Added
799
+
800
+ * add `-fk` (`--env-keys-file`) flag to customize the path to your `.env.keys` file with `run, get, set, encrypt, decrypt, and keypair` 🎉 ([#486](https://github.com/dotenvx/dotenvx/pull/486))
801
+
802
+ This is great for monorepos. Maintain one `.env.keys` file across all your apps.
803
+
804
+ ```sh
805
+ $ dotenvx encrypt -fk .env.keys -f apps/backend/.env
806
+ $ dotenvx encrypt -fk .env.keys -f apps/frontend/.env
807
+
808
+ $ tree -a .
809
+ ├── .env.keys
810
+ └── apps
811
+ ├── backend
812
+ │   └── .env
813
+ └── frontend
814
+ └── .env
815
+
816
+ $ dotenvx get -fk .env.keys -f apps/backend/.env
817
+ ```
818
+
819
+ ## [1.29.0](https://github.com/dotenvx/dotenvx/compare/v1.28.0...v1.29.0) (2024-12-09)
820
+
821
+ ### Added
822
+
823
+ * add `--ignore` flag to suppress specified errors. example: `dotenvx run --ignore=MISSING_ENV_FILE` ([#485](https://github.com/dotenvx/dotenvx/pull/485))
824
+
825
+ ## [1.28.0](https://github.com/dotenvx/dotenvx/compare/v1.27.0...v1.28.0) (2024-12-03)
826
+
827
+ ### Changed
828
+
829
+ * `.env.keys` file is generated WITHOUT quotes going forward. This is to minimize friction around Docker gotchas to developers - old versions of Docker do not support `--env-file` containing quoted keys/values. ([#480](https://github.com/dotenvx/dotenvx/pull/480)) ([additional note](https://github.com/dotenvx/dotenvx/issues/465#issuecomment-2515279676))
830
+
831
+ ## [1.27.0](https://github.com/dotenvx/dotenvx/compare/v1.26.2...v1.27.0) (2024-12-03)
832
+
833
+ ### Added
834
+
835
+ * add support for `\t` expansion when double quoted. (e.g. `TAB="hi\tfriend"` becomes `hi friend`) ([#479](https://github.com/dotenvx/dotenvx/pull/479))
836
+
837
+ ## [1.26.2](https://github.com/dotenvx/dotenvx/compare/v1.26.1...v1.26.2) (2024-12-02)
838
+
839
+ ### Changed
840
+
841
+ * build binaries with bytecode option ([#477](https://github.com/dotenvx/dotenvx/pull/477))
842
+
843
+ ## [1.26.1](https://github.com/dotenvx/dotenvx/compare/v1.26.0...v1.26.1) (2024-12-02)
844
+
845
+ ### Added
846
+
847
+ * add typescript type definitions for `main.parse` method ([#475](https://github.com/dotenvx/dotenvx/pull/475))
848
+
849
+ ## [1.26.0](https://github.com/dotenvx/dotenvx/compare/v1.25.2...v1.26.0) (2024-11-29)
850
+
851
+ ### Added
852
+
853
+ * add `privateKey` option to `main.parse` method ([#474](https://github.com/dotenvx/dotenvx/pull/474))
854
+
855
+ ## [1.25.2](https://github.com/dotenvx/dotenvx/compare/v1.25.1...v1.25.2) (2024-11-29)
856
+
857
+ ### Added
858
+
859
+ * for binaries add pre-build step using esbuild ([#471](https://github.com/dotenvx/dotenvx/pull/471))
860
+
861
+ ### Removed
862
+
863
+ * remove types for functions that were removed a while back ([2aa660](https://github.com/dotenvx/dotenvx/commit/2aa660695757143f65751a201115f074b81942a8))
864
+
865
+ ## [1.25.1](https://github.com/dotenvx/dotenvx/compare/v1.25.0...v1.25.1) (2024-11-25)
866
+
867
+ ### Changed
868
+
869
+ * improve helpful error messaging around decryption failures by specifying specific key and private key name ([#463](https://github.com/dotenvx/dotenvx/pull/463))
870
+
871
+ ## [1.25.0](https://github.com/dotenvx/dotenvx/compare/v1.24.5...v1.25.0) (2024-11-25)
872
+
873
+ ### Added
874
+
875
+ * add `run --strict` flag to exit with code `1` if any errors are encountered - like a missing `.env` file or decryption failure ([#460](https://github.com/dotenvx/dotenvx/pull/460))
876
+ * add `get --strict` flag to exit with code `1` if any errors are encountered - like a missing `.env` file or decryption failure ([#461](https://github.com/dotenvx/dotenvx/pull/461))
877
+ * add `strict` option to `config()` to throw for any errors ([#459](https://github.com/dotenvx/dotenvx/pull/459))
878
+
879
+ ### Changed
880
+
881
+ * log `MISSING_ENV_FILE` and `DECRYPTION_FAILED` errors to stderr (prior was stdout as a warning) ([#459](https://github.com/dotenvx/dotenvx/pull/459))
882
+
883
+ ### Removed
884
+
885
+ * remove `dotenvx.get()` function from `lib/main.js`. (`parse` already historically exists for this purpose) ([#461](https://github.com/dotenvx/dotenvx/pull/461))
886
+
887
+ ## [1.24.5](https://github.com/dotenvx/dotenvx/compare/v1.24.4...v1.24.5) (2024-11-22)
888
+
889
+ ### Changed
890
+
891
+ * 🐞 do not expand prior literal values ([#458](https://github.com/dotenvx/dotenvx/pull/458))
892
+
893
+ ## [1.24.4](https://github.com/dotenvx/dotenvx/compare/v1.24.3...v1.24.4) (2024-11-20)
894
+
895
+ ### Changed
896
+
897
+ * do not expand command substitution ([#456](https://github.com/dotenvx/dotenvx/pull/456))
898
+
899
+ ## [1.24.3](https://github.com/dotenvx/dotenvx/compare/v1.24.2...v1.24.3) (2024-11-20)
900
+
901
+ ### Changed
902
+
903
+ * 🐞 fix command substitution for more complex commands ([#455](https://github.com/dotenvx/dotenvx/pull/455))
904
+
905
+ ## [1.24.2](https://github.com/dotenvx/dotenvx/compare/v1.24.1...v1.24.2) (2024-11-18)
906
+
907
+ ### Changed
908
+
909
+ * treat pre-existing expandable values as literal in `process.env` ([#450](https://github.com/dotenvx/dotenvx/pull/450))
910
+
911
+ ## [1.24.1](https://github.com/dotenvx/dotenvx/compare/v1.24.0...v1.24.1) (2024-11-18)
912
+
913
+ ### Changed
914
+
915
+ * bump `cross-spawn` to prevent potential ReDoS [CVE-2024-21538](https://github.com/advisories/ghsa-3xgq-45jj-v275) ([#449](https://github.com/dotenvx/dotenvx/pull/449))
916
+
917
+ ## [1.24.0](https://github.com/dotenvx/dotenvx/compare/v1.23.0...v1.24.0) (2024-11-15)
918
+
919
+ ### Added
920
+
921
+ * support progressive append/update ([#445](https://github.com/dotenvx/dotenvx/pull/445))
922
+
923
+ ```ini
924
+ FOO=foo
925
+ FOO=${FOO}bar
926
+ # foobar
927
+ ```
928
+
929
+ * support alternate value expansion ([#445](https://github.com/dotenvx/dotenvx/pull/445))
930
+
931
+ <img width="1608" alt="image" src="https://github.com/user-attachments/assets/fdd55a0a-9b36-4cb3-b0c6-6b019441aef4">
932
+
933
+ ### Changed
934
+
935
+ * `dotenvx.parse` now maps to dotenvx's internal parser. (prior it was mapping to [dotenv's](https://github.com/motdotla/dotenv))
936
+
937
+ ### Removed
938
+
939
+ * removed `dotenvx.configDotenv()`. use `dotenvx.config()` ([#445](https://github.com/dotenvx/dotenvx/pull/445))
940
+
941
+ ## 1.23.0 (2024-11-12)
942
+
943
+ ### Added
944
+
945
+ * deeper variable expansion support and protection against self-referencing variables 🛡️ ([#439](https://github.com/dotenvx/dotenvx/pull/439))
946
+
947
+ ## 1.22.2 (2024-11-12)
948
+
949
+ ### Changed
950
+
951
+ * more lenient handling of `--` separator and better error messaging when flags are ambiguous ([#438](https://github.com/dotenvx/dotenvx/pull/438))
952
+
953
+ ## 1.22.1 (2024-11-11)
954
+
955
+ ### Changed
956
+
957
+ * 🐞 patch loading order issue with single quotes ([#436](https://github.com/dotenvx/dotenvx/pull/436))
958
+
959
+ ## 1.22.0 (2024-11-04)
960
+
961
+ ### Added
962
+
963
+ * add `--pattern` argument to `ext gitignore` (`dotenvx ext gitignore --pattern .env.keys`) ([#430](https://github.com/dotenvx/dotenvx/pull/430))
964
+
965
+ ### Changed
966
+
967
+ * clarify next steps after first time encrypting ([#430](https://github.com/dotenvx/dotenvx/pull/430))
968
+
969
+ ## 1.21.1 (2024-10-31)
970
+
971
+ ### Changed
972
+
973
+ * for `--convention nextjs` ignore `.env.local` for TEST environment ([#425](https://github.com/dotenvx/dotenvx/pull/425))
974
+ * for `precommit` redirect missing `dotenvx` command using POSIX compliant redirection ([#424](https://github.com/dotenvx/dotenvx/pull/424))
975
+ * make parent `dotenvx help` command less noisy by removing `[options]`. run `dotenvx COMMAND -h` to list all available options like always ([#429](https://github.com/dotenvx/dotenvx/pull/429))
976
+
977
+ ## 1.21.0 (2024-10-25)
978
+
979
+ ### Changed
980
+
981
+ * treat single quotes literally ([#423](https://github.com/dotenvx/dotenvx/pull/423))
982
+ * respect user chosen quotes ([#423](https://github.com/dotenvx/dotenvx/pull/423) [#377](https://github.com/dotenvx/dotenvx/issues/377))
983
+
984
+ 🎓 now if you choose to single quote, double quote, no quote, or backtick your value it will be respected - including for encrypted values. this more intuitively handles complex cases like escaped characters, literals, and json.
985
+
986
+ ## 1.20.1 (2024-10-23)
987
+
988
+ ### Changed
989
+
990
+ * update [eciesjs](https://github.com/ecies/js/issues/802) ([#421](https://github.com/dotenvx/dotenvx/pull/421))
991
+ * remove default values for ts interface - no longer permitted by latest ts ([#419](https://github.com/dotenvx/dotenvx/pull/419))
992
+
993
+ ## 1.20.0 (2024-10-17)
994
+
995
+ ### Changed
996
+
997
+ * respect `process.env.DOTENV_PRIVATE_KEY` and/or `process.env.DOTENV_PUBLIC_KEY` on `set` ([#401](https://github.com/dotenvx/dotenvx/pull/401))
998
+ * respect `process.env.DOTENV_PRIVATE_KEY` and/or `process.env.DOTENV_PUBLIC_KEY` on `encrypt` ([#411](https://github.com/dotenvx/dotenvx/pull/411))
999
+ * respect `process.env.DOTENV_PRIVATE_KEY` on `decrypt` ([#412](https://github.com/dotenvx/dotenvx/pull/412))
1000
+ * change `logger.help` to use brighter blue ([#414](https://github.com/dotenvx/dotenvx/pull/414))
1001
+
1002
+ ### Removed
1003
+
1004
+ * remove `main.decrypt,encrypt,set` ([#410](https://github.com/dotenvx/dotenvx/pull/410))
1005
+
1006
+ ## 1.19.3 (2024-10-15)
1007
+
1008
+ ### Changed
1009
+
1010
+ * 🐞 fix decrypt re-encrypt of values containing backslashes ([#406](https://github.com/dotenvx/dotenvx/pull/407))
1011
+
1012
+ ## 1.19.2 (2024-10-13)
1013
+
1014
+ ### Changed
1015
+
1016
+ * forward additional signals like `SIGUSR2` ([#403](https://github.com/dotenvx/dotenvx/pull/403))
1017
+
1018
+ ## 1.19.1 (2024-10-13)
1019
+
1020
+ ### Changed
1021
+
1022
+ * if `SIGTERM` or `SIGINT` sent, don't bubble wrapped process error ([#402](https://github.com/dotenvx/dotenvx/pull/402))
1023
+
1024
+ ## 1.19.0 (2024-10-11)
1025
+
1026
+ ### Added
1027
+
1028
+ * support key glob filtering for `encrypt` and `decrypt`. example: `dotenvx encrypt -ek "NEXT_PUBLIC_*"` ([#397](https://github.com/dotenvx/dotenvx/pull/397))
1029
+
1030
+ ## 1.18.1 (2024-10-11)
1031
+
1032
+ ### Added
1033
+
1034
+ * escape user inputted regex groupings like `$1` or `$2`. ([#396](https://github.com/dotenvx/dotenvx/pull/396))
1035
+
1036
+ ## 1.18.0 (2024-10-11)
1037
+
1038
+ ### Added
1039
+
1040
+ * `set` and `encrypt` preserve leading spaces ([#395](https://github.com/dotenvx/dotenvx/pull/395))
1041
+
1042
+ ```sh
1043
+ HELLO=world
1044
+ ```
1045
+
1046
+ ### Changed
1047
+
1048
+ * improve escape and quote handling for `set`, `encrypt`, and `decrypt` ([#395](https://github.com/dotenvx/dotenvx/pull/395))
1049
+ * 🐞 fix `encrypt`, then `decrypt`, then `encrypt` on a json value ([#377](https://github.com/dotenvx/dotenvx/issues/377))
1050
+
1051
+ Note: the underlying `replace` engine to support these changes now wraps your values in single quotes. the prior `replace` engine wrapped in double quotes.
1052
+
1053
+ So where your `.env` used to look like this with double quotes:
1054
+
1055
+ ```sh
1056
+ HELLO="encrypted:1234"
1057
+ API_KEY="encrypted:5678"
1058
+ ```
1059
+
1060
+ It will now begin looking like this with single quotes:
1061
+
1062
+ ```sh
1063
+ HELLO='encrypted:1234'
1064
+ API_KEY='encrypted:5678'
1065
+ ```
1066
+
1067
+ It's an aesthetic side effect only. Your values will continue to be decrypted and encrypted correctly.
1068
+
1069
+ ## 1.17.0 (2024-10-09)
1070
+
1071
+ ### Added
1072
+
1073
+ * add `--format=eval` option for `get` ([#393](https://github.com/dotenvx/dotenvx/pull/393))
1074
+
1075
+ ## 1.16.1 (2024-10-08)
1076
+
1077
+ ### Changed
1078
+
1079
+ * suppress stderr using `options.stdio` ([#391](https://github.com/dotenvx/dotenvx/pull/391))
1080
+
1081
+ ## 1.16.0 (2024-10-07)
1082
+
1083
+ ### Changed
1084
+
1085
+ * for `dotenvx keypair` call out to `dotenvx pro keypair` if [pro](https://github.com/dotenvx/dotenvx/issues/259) installed ([#390](https://github.com/dotenvx/dotenvx/pull/390))
1086
+
1087
+ ## 1.15.0 (2024-10-05)
1088
+
1089
+ ### Added
1090
+
1091
+ * add `--format=shell` option for `keypair` ([#389](https://github.com/dotenvx/dotenvx/pull/389))
1092
+
1093
+ ## 1.14.2 (2024-09-27)
1094
+
1095
+ ### Changed
1096
+
1097
+ * swap `process.stdout.write` for `console.log` to patch up npx edge case ([#387](https://github.com/dotenvx/dotenvx/pull/387))
1098
+
1099
+ ## 1.14.1 (2024-09-13)
1100
+
1101
+ ### Changed
1102
+
1103
+ * run precommit hook only on staged files ([#380](https://github.com/dotenvx/dotenvx/pull/380))
1104
+
1105
+ ## 1.14.0 (2024-09-04)
1106
+
1107
+ ### Added
1108
+
1109
+ * add `dotenvx keypair` command for printing your public/private keypairs ([#375](https://github.com/dotenvx/dotenvx/pull/375))
1110
+
1111
+ ## 1.13.3 (2024-09-04)
1112
+
1113
+ ### Changed
1114
+
1115
+ * exit code 1 when `decrypt` fails in any way ([#374](https://github.com/dotenvx/dotenvx/pull/374))
1116
+
1117
+ ## 1.13.2 (2024-09-02)
1118
+
1119
+ ### Added
1120
+
1121
+ * expose `getColor` and `bold` to `lib/main.js` ([#369](https://github.com/dotenvx/dotenvx/pull/369))
1122
+
1123
+ ## 1.13.1 (2024-09-02)
1124
+
1125
+ ### Added
1126
+
1127
+ * expose `logger` and `setLogLevel` to `lib/main.js` - `const = { logger, setLogLevel } = require('@dotenvx/dotenvx')` ([#368](https://github.com/dotenvx/dotenvx/pull/368))
1128
+
1129
+ ## 1.13.0 (2024-09-02)
1130
+
1131
+ ### Changed
1132
+
1133
+ * move `ls` to core commands ([#367](https://github.com/dotenvx/dotenvx/pull/367))
1134
+
1135
+ ## 1.12.1 (2024-08-31)
1136
+
1137
+ ### Changed
1138
+
1139
+ * return without quotations for `dotenvx get --format shell` ([#366](https://github.com/dotenvx/dotenvx/pull/366))
1140
+
1141
+ ## 1.12.0 (2024-08-31)
1142
+
1143
+ ### Added
1144
+
1145
+ * add `dotenvx get --format shell` option ([#363](https://github.com/dotenvx/dotenvx/pull/363))
1146
+
1147
+ ## 1.11.5 (2024-08-28)
1148
+
1149
+ ### Changed
1150
+
1151
+ * revert `tinyexec` for `execa` - to support usage in bun
1152
+
1153
+ ## 1.11.4 (2024-08-28)
1154
+
1155
+ ### Changed
1156
+
1157
+ * bump `tinyexec` and add postrelease-bunx check ([#362](https://github.com/dotenvx/dotenvx/pull/362))
1158
+
1159
+ ## 1.11.3 (2024-08-27)
1160
+
1161
+ ### Changed
1162
+
1163
+ * fallback to `process.env.TERM` for color depth where deno and bun do not support it ([#360](https://github.com/dotenvx/dotenvx/pull/360))
1164
+
1165
+ ## 1.11.2 (2024-08-27)
1166
+
1167
+ ### Added
1168
+
1169
+ * detect encoding when reading `.env*` file on `run/get` ([#359](https://github.com/dotenvx/dotenvx/pull/359))
1170
+
1171
+ ## 1.11.1 (2024-08-26)
1172
+
1173
+ ### Changed
1174
+
1175
+ * support encryption of `export KEY` variables and preserve `#!shebangs` ([#357](https://github.com/dotenvx/dotenvx/pull/357))
1176
+
1177
+ ## 1.11.0 (2024-08-26)
1178
+
1179
+ ### Added
1180
+
1181
+ * add `--exclude-env-file (-ef)` to `ext ls` ([#356](https://github.com/dotenvx/dotenvx/pull/356))
1182
+
1183
+ ### Changed
1184
+
1185
+ * `ext precommit` ignores `tests/` directory (and similar) ([#356](https://github.com/dotenvx/dotenvx/pull/356))
1186
+
1187
+ ## 1.10.4 (2024-08-25)
1188
+
1189
+ ### Changed
1190
+
1191
+ * fix `pro` display in help command
1192
+
1193
+ ## 1.10.3 (2024-08-24)
1194
+
1195
+ ### Added
1196
+
1197
+ * ci: automate publishing to `winget` ([#354](https://github.com/dotenvx/dotenvx/pull/354))
1198
+
1199
+ ## 1.10.2 (2024-08-23)
1200
+
1201
+ ### Changed
1202
+
1203
+ * default `config` to empty `[]` array so that `DOTENV_KEY_${environment}` looks up correctly ([#352](https://github.com/dotenvx/dotenvx/pull/352))
1204
+
1205
+ ## 1.10.1 (2024-08-23)
1206
+
1207
+ ### Changed
1208
+
1209
+ * check subfolders on `dotenvx ext precommit` hook ([#350](https://github.com/dotenvx/dotenvx/pull/350))
1210
+
1211
+ ## 1.10.0 (2024-08-23)
1212
+
1213
+ ### Removed
1214
+
1215
+ * remove `dotenvx ext vault`, replace with [dotenvx-ext-vault](https://github.com/dotenvx/dotenvx-ext-vaut) (install there to continue using `ext vault`) ([#351](https://github.com/dotenvx/dotenvx/pull/351))
1216
+
1217
+ ## 1.9.1 (2024-08-22)
1218
+
1219
+ ### Added
1220
+
1221
+ * warn if private key is missing or blank ([#349](https://github.com/dotenvx/dotenvx/pull/349))
1222
+
1223
+ ## 1.9.0 (2024-08-21)
1224
+
1225
+ ### Added
1226
+
1227
+ * add `--exclude-key` (`-ek`) option to `dotenvx encrypt` and `dotenvx decrypt` ([#344](https://github.com/dotenvx/dotenvx/pull/344))
1228
+
1229
+ ### Changed
1230
+
1231
+ * preserve comments and spacing on first-time generation of .env.example file ([#346](https://github.com/dotenvx/dotenvx/pull/346))
1232
+
1233
+ ### Removed
1234
+
1235
+ * removed `winston` - logger simplified to use `console.log` going forward ([#347](https://github.com/dotenvx/dotenvx/pull/347))
1236
+
1237
+ ## 1.8.0 (2024-08-20)
1238
+
1239
+ ### Added
1240
+
1241
+ * warn when decryption fails on `run` ([#339](https://github.com/dotenvx/dotenvx/pull/339))
1242
+ * decrypt expanded values as necessary ([#336](https://github.com/dotenvx/dotenvx/pull/336))
1243
+
1244
+ ### Changed
1245
+
1246
+ * use `ansi` colors over `rgb` - for wider terminal coverage ([#340](https://github.com/dotenvx/dotenvx/pull/340))
1247
+ * replace `chalk` with `picocolors` and `color-name` - cutting down on 5 dependencies ([#335](https://github.com/dotenvx/dotenvx/pull/335))
1248
+ * replace `execa` with `tinyexec` - cutting down on 15 dependencies ([#328](https://github.com/dotenvx/dotenvx/pull/328))
1249
+ * optimize `Ls._filepaths` ([#317](https://github.com/dotenvx/dotenvx/pull/317/))
1250
+
1251
+ ### Removed
1252
+
1253
+ * remove `picocolors` and `color-name` - cutting down on 2 dependencies ([#340](https://github.com/dotenvx/dotenvx/pull/340))
1254
+ * remove `ext hub` from extension list (you can still install it as an extension [here](https://github.com/dotenvx/dotenvx-ext-hub)) ([#337](https://github.com/dotenvx/dotenvx/pull/337))
1255
+
1256
+ ## 1.7.0 (2024-08-09)
1257
+
1258
+ ### Removed
1259
+
1260
+ * remove `ext settings` command (and [`conf`](https://www.npmjs.com/package/conf) along with it) ([#323](https://github.com/dotenvx/dotenvx/pull/323))
1261
+
1262
+ ## 1.6.5 (2024-08-09)
1263
+
1264
+ ### Changed
1265
+
1266
+ * 🐞 patch `chomp` for interpolation. strip ending newline (was stripping first found newline) ([#322](https://github.com/dotenvx/dotenvx/pull/322))
1267
+
1268
+ ## 1.6.4 (2024-07-15)
1269
+
1270
+ ### Changed
1271
+
1272
+ * fix `dotenvx help` (command was missing)
1273
+
1274
+ ## 1.6.3 (2024-07-15)
1275
+
1276
+ ### Changed
1277
+
1278
+ * adjust `dotenvx pro` to be dynamic if [dotenvx-pro](https://github.com/dotenvx/dotenvx-pro) is installed user's machine
1279
+
1280
+ ## 1.6.2 (2024-07-12)
1281
+
1282
+ ### Added
1283
+
1284
+ * add more detailed type definitions ([#313](https://github.com/dotenvx/dotenvx/pull/313))
1285
+
1286
+ ## 1.6.1 (2024-07-11)
1287
+
1288
+ ### Added
1289
+
1290
+ * add support for `.env1` (`.env*`) file format. (private key expands to `DOTENV_PRIVATE_KEY_DEVELOPMENT1`) ([#312](https://github.com/dotenvx/dotenvx/pull/312))
1291
+
1292
+ ## 1.6.0 (2024-07-11)
1293
+
1294
+ ### Added
1295
+
1296
+ * add `dotenvx decrypt` command. works inversely to `dotenvx encrypt`. same flags. ([#294](https://github.com/dotenvx/dotenvx/pull/294))
1297
+ * add `--stdout` option to `dotenvx decrypt`. example: `dotenvx decrypt -f .env.production --stdout > somefile.txt` ([#298](https://github.com/dotenvx/dotenvx/pull/298))
1298
+ * add `--stdout` option to `dotenvx encrypt`. example: `dotenvx encrypt -f .env.production --stdout > somefile.txt` ([#298](https://github.com/dotenvx/dotenvx/pull/298))
1299
+
1300
+ ### Changed
1301
+
1302
+ * smarter private key finder. if you rename your file to `secrets.txt` it can still decrypt from `DOTENV_PRIVATE_KEY` by seeking out the invert of the `DOTENV_PUBLIC_KEY` inside `secrets.txt` ([#302](https://github.com/dotenvx/dotenvx/pull/302))
1303
+
1304
+ ### Removed
1305
+
1306
+ * remove `dotenvx convert` - still at `dotenvx encrypt`
1307
+ * remove `dotenvx vault` - still at `dotenvx ext vault`
1308
+
1309
+ ## 1.5.0 (2024-06-30)
1310
+
1311
+ ### Added
1312
+
1313
+ * add help text for dashed values on `set`. example: `dotenvx set KEY -- "- + * ÷"` ([#293](https://github.com/dotenvx/dotenvx/pull/293))
1314
+
1315
+ ### Changed
1316
+
1317
+ * replace `@inquirer/confirm` and `ora` ([#285](https://github.com/dotenvx/dotenvx/pull/285))
1318
+
1319
+ ### Removed
1320
+
1321
+ * remove `dotenvx ext hub`, replace with [dotenvx-ext-hub](https://github.com/dotenvx/dotenvx-ext-hub) (install there to continue using hub) ([#291](https://github.com/dotenvx/dotenvx/pull/291))
1322
+
1323
+ ## 1.4.0 (2024-06-30)
1324
+
1325
+ ### Removed
1326
+
1327
+ * remove update notice. let users decide what version they want without nagging them to update ([#288](https://github.com/dotenvx/dotenvx/pull/288))
1328
+ * remove `dotenvx hub`. still available at `dotenvx ext hub` ([#290](https://github.com/dotenvx/dotenvx/pull/290))
1329
+
1330
+ ## 1.3.2 (2024-06-30)
1331
+
1332
+ ### Changed
1333
+
1334
+ * 🐞 remove risky `prepare` and `postinstall` scripts and replace with `npm run patch` for development and binary building ([#286](https://github.com/dotenvx/dotenvx/pull/286))
1335
+
1336
+ ## 1.3.1 (2024-06-30)
1337
+
1338
+ ### Changed
1339
+
1340
+ * 🐞 make `patch-package` only run locally with `prepare` ([#283](https://github.com/dotenvx/dotenvx/pull/283))
1341
+
1342
+ ## 1.3.0 (2024-06-29)
1343
+
1344
+ ### Added
1345
+
1346
+ * encrypt specified keys with `--key` option - `dotenvx encrypt -k HELLO` ([#281](https://github.com/dotenvx/dotenvx/pull/281))
1347
+
1348
+ ## 1.2.0 (2024-06-29)
1349
+
1350
+ ### Added
1351
+
1352
+ * handle nested `dotenvx` invocations - `dotenvx run -- dotenvx run -- env` ([#279](https://github.com/dotenvx/dotenvx/pull/279))
1353
+
1354
+ ### Changed
1355
+
1356
+ * replace `glob` with faster approach ([#278](https://github.com/dotenvx/dotenvx/pull/278))
1357
+
1358
+ ## 1.1.0 (2024-06-28)
1359
+
1360
+ ### Added
1361
+
1362
+ * add TypeScript type definitions ([#272](https://github.com/dotenvx/dotenvx/pull/272))
1363
+
1364
+ ## 1.0.1 (2024-06-27)
1365
+
1366
+ ### Changed
1367
+
1368
+ * 🐞 fix expansion when preset on `process.env` and/or with `--overload` ([#271](https://github.com/dotenvx/dotenvx/pull/271))
1369
+
1370
+ ## 1.0.0 (2024-06-24)
1371
+
1372
+ 🎉 `dotenvx` has made it to `1.0.0`. There are BREAKING CHANGES ⚠️ .
1373
+
1374
+ ### Added
1375
+
1376
+ * added `dotenvx set KEY value --plain` to set plain text values
1377
+ * added `dotenvx ext` 🔌 as a location to place extensions like `gititgnore`, `precommit`, `ls`, and more. better than cluttering up core features like `run`, `get/set`, and `encrypt`.
1378
+ * added `dotenvx pro` 🏆 command with coming soon and [link to GitHub issue](https://github.com/dotenvx/dotenvx/issues/259) (if you wish to be notified of progress. will provide tooling/features for teams)
1379
+
1380
+ ### Changed
1381
+
1382
+ * `BREAKING ⚠️`
1383
+ * turned on encryption by default for `dotenvx set` (use `dotenvx set KEY value --plain` to set plain values)
1384
+ * renamed `dotenvx encrypt` to `dotenvx ext vault encrypt` (for managing `.env.vault` files)
1385
+ * renamed `dotenvx convert` to `dotenvx encrypt`
1386
+ * moved `ls` to `dotenvx ext ls`
1387
+ * moved `genexample` to `dotenvx ext genexample`
1388
+ * moved `gitignore` to `dotenvx ext gitignore`
1389
+ * moved `prebuild` to `dotenvx ext prebuild`
1390
+ * moved `precommit` to `dotenvx ext precommit`
1391
+ * moved `scan` to `dotenvx ext scan`
1392
+ * moved `hub` to `dotenvx ext hub`
1393
+ * moved `vault` to `dotenvx ext vault`
1394
+ * moved `settings` to `dotenvx ext settings`
1395
+
1396
+ (for many of these moved commands, for example `dotenvx genexample`, still work in `1.0.0` but with a large deprecated notice - `DEPRECATION NOTICE: [genexample] has moved to [dotenvx ext genexample]`. Please change your muscle memory to `dotenvx ext genexample`, as these deprecated command paths will be removed in a later minor version. importantly `dotenvx encrypt` was not able to be preserved because as it is now in use for encrypted `.env` files rather than `.env.vault` files)
1397
+
1398
+ This is a BIG release that sets the tone for `dotenvx`'s core offering and features while maintaining room for growth. Thank you everyone for your support and usage of `dotenvx` 🙏.
1399
+
1400
+ [blog post: "From dotenv to dotenvx: Next Generation Config Management"](https://dotenvx.com/blog/2024/06/24/dotenvx-next-generation-config-management.html)
1401
+
1402
+ ## 0.45.0 (2024-06-17)
1403
+
1404
+ ### Changed
1405
+
1406
+ * Rename `dotenvx vault convert` to `dotenvx vault migrate` ([#251](https://github.com/dotenvx/dotenvx/pull/251))
1407
+ * Update `install.sh` regex version check to be `sh` compatible (not just bash)
1408
+
1409
+ ## 0.44.6 (2024-06-17)
1410
+
1411
+ ### Added
1412
+
1413
+ * Added `checksums.txt` as part of each release
1414
+
1415
+ ## 0.44.5 (2024-06-16)
1416
+
1417
+ ### Changed
1418
+
1419
+ * Removed `.github` folder from published binaries on npm (example: [npm code](https://www.npmjs.com/package/@dotenvx/dotenvx-darwin-arm64?activeTab=code))
1420
+ * Add help message to `install.sh`
1421
+
1422
+ ## 0.44.4 (2024-06-15)
1423
+
1424
+ ### Changed
1425
+
1426
+ * Automated deployment of `install.sh` along with sanity checks ([#250](https://github.com/dotenvx/dotenvx/pull/250))
1427
+
1428
+ ## 0.44.3 (2024-06-15)
1429
+
1430
+ ### Added
1431
+
1432
+ * Include `CHANGELOG.md` in npm release
1433
+ * Include `install.sh` in package release
1434
+
1435
+ ## 0.44.2 (2024-06-14)
1436
+
1437
+ ### Changed
1438
+
1439
+ * Fix license in `package.json` to match project's license BSD-3.
1440
+
1441
+ ## 0.44.1 (2024-05-27)
1442
+
1443
+ ### Changed
1444
+
1445
+ * Respect decryption of zero length strings - `dotenvx set HELLO '' --encrypt` ([#236](https://github.com/dotenvx/dotenvx/pull/236))
1446
+
1447
+ ## 0.44.0 (2024-05-22)
1448
+
1449
+ ### Added
1450
+
1451
+ * Added `options.debug`, `options.verbose`, `options.quiet`, and `options.logLevel` to `.config()` ([#233](https://github.com/dotenvx/dotenvx/pull/233))
1452
+
1453
+ ## 0.43.2 (2024-05-21)
1454
+
1455
+ ### Changed
1456
+
1457
+ * Patch `replace` when replacing double, single, or backticked quoted at anywhere in the `.env` file. ([#232](https://github.com/dotenvx/dotenvx/pull/232))
1458
+
1459
+ ## 0.43.1 (2024-05-21)
1460
+
1461
+ ### Changed
1462
+
1463
+ * Improved `replace` function regex - to handle more edge case scenarios with replacing KEY/values ([#227](https://github.com/dotenvx/dotenvx/pull/227))
1464
+
1465
+ ## 0.43.0 (2024-05-20)
1466
+
1467
+ ### Added
1468
+
1469
+ * Support `require('@dotenvx/dotenvx').config()` for `DOTENV_PRIVATE_KEY` decryption ([#225](https://github.com/dotenvx/dotenvx/pull/225))
1470
+
1471
+ ## 0.42.0 (2024-05-20)
1472
+
1473
+ ### Added
1474
+
1475
+ * Added `.env.vault deprecated` warning when using `DOTENV_KEY`. Provide instructions to convert to encrypted `.env` files. ([#224](https://github.com/dotenvx/dotenvx/pull/224))
1476
+
1477
+ ## 0.41.0 (2024-05-20)
1478
+
1479
+ ### Added
1480
+
1481
+ * Added `vault convert` command to list convert instructions for converting `.env.vault` to encrypted .env files ([#222](https://github.com/dotenvx/dotenvx/pull/222))
1482
+
1483
+ ```sh
1484
+ To convert your .env.vault file to encrypted .env file(s):
1485
+
1486
+ 1. Run [dotenvx vault decrypt]
1487
+ 2. Run [ls -a .env*]
1488
+
1489
+ Lastly, convert each .env(.environment) file:
1490
+
1491
+ 3. Run [dotenvx convert -f .env.production]
1492
+
1493
+ For example:
1494
+
1495
+ $ dotenvx convert -f .env
1496
+ $ dotenvx convert -f .env.ci
1497
+ $ dotenvx convert -f .env.production
1498
+
1499
+ Afterward:
1500
+
1501
+ Update production with your new DOTENV_PRIVATE_KEY_PRODUCTION located in .env.keys
1502
+
1503
+ Learn more at [https://dotenvx.com/docs/quickstart#add-encryption]
1504
+ ```
1505
+
1506
+ ### Changed
1507
+
1508
+ * Rename `encryptme` to `convert` ([#222](https://github.com/dotenvx/dotenvx/pull/222))
1509
+
1510
+ ## 0.40.1 (2024-05-19)
1511
+
1512
+ ### Added
1513
+
1514
+ * Support encryption replacement of multiline values ([#220](https://github.com/dotenvx/dotenvx/pull/220))
1515
+
1516
+ ## 0.40.0 (2024-05-18)
1517
+
1518
+ ### Added
1519
+
1520
+ * Added `dotenvx encryptme` command to convert an entire `.env` file to an encrypted `.env` file. ([#213](https://github.com/dotenvx/dotenvx/pull/213))
1521
+
1522
+ ### Changed
1523
+
1524
+ * Made `precommit` smart enough to check if a `.env*` file is encrypted or not. If fully encrypted, then allow `precommit` check to pass ([#211](https://github.com/dotenvx/dotenvx/pull/211))
1525
+
1526
+ ### Removed
1527
+
1528
+ * Do not warn of missing files for conventions (too noisy) ([#216](https://github.com/dotenvx/dotenvx/pull/216))
1529
+
1530
+ ## 0.39.0 (2024-05-14)
1531
+
1532
+ ### Added
1533
+
1534
+ * Add `--convention` flag to `get`
1535
+
1536
+ ### Removed
1537
+
1538
+ * Removed help messages like 'in production' and 'in ci'. Too specific and could lead to confusion.
1539
+
1540
+ ## 0.38.0 (2024-05-09)
1541
+
1542
+ ### Changed
1543
+
1544
+ * ⚠️ DEPRECATION NOTICE: the following commands are being moved. Please, update any code and muscle memory you have related to these:
1545
+ * `dotenvx encrypt` => `dotenvx vault encrypt`
1546
+ * `dotenvx decrypt` => `dotenvx vault decrypt`
1547
+ * `dotenvx status` => `dotenvx vault status`
1548
+ * ⚠️ DEPRECATION NOTICE: the beta `hub` commands are being completely deprecated (they will be fully removed in upcoming 1.0.0 release). We will provide .env.keys tooling at a later time (replacing hub) but in the context of the new `--encrypt` flag functionality below
1549
+
1550
+ ### Added
1551
+
1552
+ * Add encryption to your `.env` files with a single command. Pass the `--encrypt` flag. 🎉
1553
+
1554
+ ```sh
1555
+ $ dotenvx set HELLO World --encrypt
1556
+ set HELLO with encryption (.env)
1557
+ ```
1558
+
1559
+ ![](https://github.com/dotenvx/dotenvx/assets/3848/21f7a529-7a40-44e4-87d4-a72e1637b702)
1560
+
1561
+ > A `DOTENV_PUBLIC_KEY` (encryption key) and a `DOTENV_PRIVATE_KEY` (decryption key) is generated using the same public-key cryptography as [Bitcoin](https://en.bitcoin.it/wiki/Secp256k1).
1562
+
1563
+ Further notes:
1564
+
1565
+ * `DOTENV_PUBLIC_KEY` lives in the `.env` file. You can safely share this with whomever you wish.
1566
+ * `DOTENV_PRIVATE_KEY` lives in your `.env.keys` file. Share this only with those you trust to decrypt your secrets.
1567
+ * If using encrypted `.env` files like this it is safe to commit them to source code. This makes reviewing PRs that contain secrets much easier.
1568
+ * Tell your contributors to contribute a secret using the command `dotenvx set HELLO world --encrypt`.
1569
+ * Set your `DOTENV_PRIVATE_KEY` on your server to decrypt these values using `dotenvx run -- yourcommand`
1570
+ * You can repeat all this per environment by modifying your set command to `dotenvx set HELLO production -f .env.production --encrypt` (for example)
1571
+ * In time we will add better tooling for sharing the private keys living in `.env.keys`, but until then safely share with team members you trust.
1572
+ * This mechanism should be particularly useful for open source projects that want to permit secrets contributions without handing out the decryption keys. Now anyone can contribute a secret and only you can decrypt it to see what was changed.
1573
+ * This solution is brand new, but I intend it to be the future for `.env` files. It has many benefits over `.env.vault` files. We will be sunsetting the `.env.vault` mechanism but its tooling will stay around in `dotenvx` for at least 1 year to come - under `dotenvx vault` parent command.
1574
+ * Be patient as we update our documentation to prioritize this improved encryption format for `.env` files.
1575
+
1576
+ ## 0.37.1 (2024-04-30)
1577
+
1578
+ * warn when running `dotenvx status` against any untracked (not in .env.vault) files ([#196](https://github.com/dotenvx/dotenvx/pull/196))
1579
+
1580
+ ## 0.37.0 (2024-04-27)
1581
+
1582
+ * add `--convention nextjs` flag to `dotenvx run` ([#193](https://github.com/dotenvx/dotenvx/pull/193))
1583
+ * improve `status` error message when decrypt fails or no `.env*` files ([#192](https://github.com/dotenvx/dotenvx/pull/192))
1584
+
1585
+ ## 0.36.1 (2024-04-27)
1586
+
1587
+ * handle `SIGTERM` ([#191](https://github.com/dotenvx/dotenvx/pull/191))
1588
+
1589
+ ## 0.36.0 (2024-04-27)
1590
+
1591
+ * add `dotenvx status` command ([#186](https://github.com/dotenvx/dotenvx/pull/186))
1592
+ * add `dotenvx decrypt [directory]` argument option ([#186](https://github.com/dotenvx/dotenvx/pull/186))
1593
+ * add `dotenvx decrypt --environment` flag option ([#186](https://github.com/dotenvx/dotenvx/pull/186))
1594
+ * normalize windows `\` paths ([#186](https://github.com/dotenvx/dotenvx/pull/186))
1595
+
1596
+ ## 0.35.1 (2024-04-19)
1597
+
1598
+ ### Changed
1599
+
1600
+ * exit code `1` if `get KEY` not found/undefined ([#185](https://github.com/dotenvx/dotenvx/pull/185))
1601
+
1602
+ ## 0.35.0 (2024-04-19)
1603
+
1604
+ ### Added
1605
+
1606
+ * added `set` command, and optionally pass `--env-file` flag(s) to `set` usage: `dotenvx set HELLO World` ([#182](https://github.com/dotenvx/dotenvx/pull/182))
1607
+
1608
+ ## 0.34.0 (2024-04-16)
1609
+
1610
+ ### Changed
1611
+
1612
+ * make `hub push` more forgiving by permitting full filepath like `hub push directory/.env.keys` ([#180](https://github.com/dotenvx/dotenvx/pull/180))
1613
+ * add note on generated `.env.example` ([#181](https://github.com/dotenvx/dotenvx/pull/181))
1614
+
1615
+ ## 0.33.1 (2024-04-15)
1616
+
1617
+ ### Changed
1618
+
1619
+ * patch injection around falsy values ([#177](https://github.com/dotenvx/dotenvx/pull/177))
1620
+
1621
+ ## 0.33.0 (2024-04-15)
1622
+
1623
+ ### Added
1624
+
1625
+ * add .env.vault support for `.env.something.something` (useful for Next.js pattern of .env.development.local) ([#174](https://github.com/dotenvx/dotenvx/pull/174))
1626
+
1627
+ ## 0.32.0 (2024-04-09)
1628
+
1629
+ ### Changed
1630
+
1631
+ * quiet exit code 1 message ([#173](https://github.com/dotenvx/dotenvx/pull/173))
1632
+
1633
+ ## 0.31.1 (2024-04-08)
1634
+
1635
+ ### Changed
1636
+
1637
+ * improve error messages ([#171](https://github.com/dotenvx/dotenvx/pull/171))
1638
+
1639
+ ## 0.31.0 (2024-04-08)
1640
+
1641
+ ### Added
1642
+
1643
+ * add `hub logout` command ([#170](https://github.com/dotenvx/dotenvx/pull/170))
1644
+
1645
+ ## 0.30.2 (2024-04-08)
1646
+
1647
+ ### Changed
1648
+
1649
+ * small fixes for windows users related to `hub open` and `hub push` ([#169](https://github.com/dotenvx/dotenvx/pull/169))
1650
+
1651
+ ## 0.30.1 (2024-04-07)
1652
+
1653
+ ### Changed
1654
+
1655
+ * remove windows warnings related to missing `git` or `git origin` ([#166](https://github.com/dotenvx/dotenvx/pull/166) [#167](https://github.com/dotenvx/dotenvx/pull/167))
1656
+
1657
+ ## 0.30.0 (2024-04-06)
1658
+
1659
+ ### Added
1660
+
1661
+ * `dotenvx get --quiet` will display the value no matter what (adds a `blank0` logger level) ([#161](https://github.com/dotenvx/dotenvx/pull/161))
1662
+
1663
+ ### Changed
1664
+
1665
+ * refactor `dotenvx get` to use `run` under the hood
1666
+
1667
+ ## 0.29.2 (2024-04-05)
1668
+
1669
+ ### Changed
1670
+
1671
+ * fix broken `hub login` and `hub open` ([#160](https://github.com/dotenvx/dotenvx/pull/160))
1672
+
1673
+ ## 0.29.1 (2024-04-04)
1674
+
1675
+ ### Changed
1676
+
1677
+ * patch situation where `DOTENV_KEY` is present and `--env-file` flag is set. assume to still look for `.env.vault` file as first in line ([#157](https://github.com/dotenvx/dotenvx/pull/157))
1678
+
1679
+ ## 0.29.0 (2024-04-04)
1680
+
1681
+ ### Changed
1682
+
1683
+ * respect order for `--env-vault-file`, `--env-file` and `--env` flags (for example: `dotenvx run --env "HELLO=one" --env-file=.env` will prioritize `--env` flag. Add `--overload` here to prioritize `--env-file` or reverse the order.). you can now mix and match multiple flags in any complex order you wish and dotenvx will respect it. ([#155](https://github.com/dotenvx/dotenvx/pull/155))
1684
+
1685
+ ## 0.28.0 (2024-04-03)
1686
+
1687
+ ### Added
1688
+
1689
+ * add `dotenvx settings` command to list your current settings. in the future we'll provide ways to modify these settings as dotenvx's functionality grows ([#153](https://github.com/dotenvx/dotenvx/pull/153))
1690
+
1691
+ ## 0.27.2 (2024-04-02)
1692
+
1693
+ ### Added
1694
+
1695
+ * add windows postrelease step to check that `dotenvx.exe` is functional immediately after release ([#141](https://github.com/dotenvx/dotenvx/pull/141))
1696
+
1697
+ ### Changed
1698
+
1699
+ * replace `package-json` with `undici` ([#146](https://github.com/dotenvx/dotenvx/pull/146))
1700
+ * prune redundant packages ([#148](https://github.com/dotenvx/dotenvx/pull/148))
1701
+ * return current version if remote version fails ([#149](https://github.com/dotenvx/dotenvx/pull/149))
1702
+ * switch to our own update notice mechanism (eliminating multiple deps) ([#151](https://github.com/dotenvx/dotenvx/pull/151))
1703
+
1704
+ ## 0.27.1 (2024-03-26)
1705
+
1706
+ ### Added
1707
+
1708
+ * provide `.zip` download option for windows executable ([#140](https://github.com/dotenvx/dotenvx/pull/140))
1709
+
1710
+ ### Removed
1711
+
1712
+ * remove `got` from top level deps ([#139](https://github.com/dotenvx/dotenvx/pull/139))
1713
+
1714
+ ## 0.27.0 (2024-03-25)
1715
+
1716
+ ### Changed
1717
+
1718
+ * move `update-notifier` into `lib/helpers` for more control over `got` lib ([#138](https://github.com/dotenvx/dotenvx/pull/138))
1719
+ * move `clipboardy` into `lib/helpers` for more control and to support commonjs going forward (sindre has dropped support and many mature systems still require commonjs for their infra and have need of dotenvx). ([#137](https://github.com/dotenvx/dotenvx/pull/137))
1720
+
1721
+ ## 0.26.0 (2024-03-18)
1722
+
1723
+ ### Added
1724
+
1725
+ * add `hub pull` command to pull a repo's `.env.keys` down. ([#129](https://github.com/dotenvx/dotenvx/pull/129))
1726
+
1727
+ ## 0.25.1 (2024-03-14)
1728
+
1729
+ ### Changed
1730
+
1731
+ * 🐞 patch bug with evaluate commands. do not attempt to evaluate risky preset envs in `process.env`. evaluate only what's set in a `.env*` file ([#125](https://github.com/dotenvx/dotenvx/pull/125))
1732
+
1733
+ ## 0.25.0 (2024-03-12)
1734
+
1735
+ ### Added
1736
+
1737
+ * expand `hub push` with `[directory]` option. use for monorepos. for example: `dotenvx hub push apps/backend` ([#121](https://github.com/dotenvx/dotenvx/pull/121))
1738
+
1739
+ ## 0.24.0 (2024-02-29)
1740
+
1741
+ ### Added
1742
+
1743
+ * add command substitution. for example `DATABASE_URL="postgres://$(whoami)@localhost/my_database"` ([#113](https://github.com/dotenvx/dotenvx/pull/113))
1744
+
1745
+ ## 0.23.0 (2024-02-28)
1746
+
1747
+ ### Added
1748
+
1749
+ * support personal environment variables. anything after the comment `# personal.dotenvx.com` will be considered personal and will not be encrypted to .env.vault ([#110](https://github.com/dotenvx/dotenvx/pull/110))
1750
+
1751
+ ## 0.22.0 (2024-02-27)
1752
+
1753
+ ### Added
1754
+
1755
+ * `require('@dotenvx/dotenvx').config()` expands/interpolates variables. this matches the behavior of `run`. (note that this behavior differs from the original `require('dotenv').config()` ([#107](https://github.com/dotenvx/dotenvx/pull/107))
1756
+
1757
+ ## 0.21.0 (2024-02-27)
1758
+
1759
+ ### Added
1760
+
1761
+ * expose `genexample` function on `lib/main.js` for export convenience ([#102](https://github.com/dotenvx/dotenvx/pull/102))
1762
+
1763
+ ### Changed
1764
+
1765
+ * rely on `which` npm module to find system command path for user inputted command(s) ([#105](https://github.com/dotenvx/dotenvx/pull/105))
1766
+
1767
+ ### Removed
1768
+
1769
+ * remove `main.inject` function ([#102](https://github.com/dotenvx/dotenvx/pull/102))
1770
+
1771
+ ## 0.20.2 (2024-02-24)
1772
+
1773
+ ### Added
1774
+
1775
+ * added support for `--env` flag on the `.env.vault` decryption portion of `run` ([#101](https://github.com/dotenvx/dotenvx/pull/101))
1776
+
1777
+ ## 0.20.1 (2024-02-24)
1778
+
1779
+ ### Changed
1780
+
1781
+ * use system command path ([#98](https://github.com/dotenvx/dotenvx/pull/98))
1782
+
1783
+ ## 0.20.0 (2024-02-23)
1784
+
1785
+ ### Changed
1786
+
1787
+ * added `--env` flag. for example, `dotenvx --env="HELLO=World" -- yourcommand` ([#94](https://github.com/dotenvx/dotenvx/pull/94))
1788
+
1789
+ ## 0.19.1 (2024-02-22)
1790
+
1791
+ ### Changed
1792
+
1793
+ * patched up the `precommit` command ([#91](https://github.com/dotenvx/dotenvx/pull/91))
1794
+
1795
+ ## 0.19.0 (2024-02-22)
1796
+
1797
+ ### Added
1798
+
1799
+ * added `scan` command to scan for possible leaked secrets in your code ([#90](https://github.com/dotenvx/dotenvx/pull/90))
1800
+
1801
+ ## 0.18.0 (2024-02-21)
1802
+
1803
+ ### Added
1804
+
1805
+ * added `get` command, optionally pass `--env-file` flag(s) to `get`, optionally pass `--overload`, and optionally pass `--pretty-print`. usage: `dotenvx get HELLO` => `World` ([#89](https://github.com/dotenvx/dotenvx/pull/89))
1806
+
1807
+ ## 0.17.1 (2024-02-20)
1808
+
1809
+ ### Changed
1810
+
1811
+ * expose `main.encrypt` and `main.ls` functions
1812
+
1813
+ ## 0.17.0 (2024-02-19)
1814
+
1815
+ ### Added
1816
+
1817
+ * added `[directory]` argument to `encrypt`. for example, in your nx repo from root `dotenvx encrypt apps/backend` will encrypt .env* files in that directory and manage the `.env.keys` and `.env.vault` in that directory as well ([#82](https://github.com/dotenvx/dotenvx/pull/82))
1818
+
1819
+ ## 0.16.1 (2024-02-19)
1820
+
1821
+ ### Changed
1822
+
1823
+ * bumped `dotenv` version to fix `encrypt` bug
1824
+
1825
+ ## 0.16.0 (2024-02-17)
1826
+
1827
+ ### Added
1828
+
1829
+ * added `ls` command to list all your `.env*` files ([#80](https://github.com/dotenvx/dotenvx/pull/80))
1830
+ * added `--env-file` option `ls` ([#82](https://github.com/dotenvx/dotenvx/pull/82))
1831
+ * optionally specify `--env-vault-file` path to `.env.vault` (defaults to `.env.vault`) ([#73](https://github.com/dotenvx/dotenvx/pull/73))
1832
+
1833
+ ## 0.15.4 (2024-02-11)
1834
+
1835
+ ### Changed
1836
+
1837
+ * 🐞 patch `--overload` flag logic ([#66](https://github.com/dotenvx/dotenvx/pull/66))
1838
+
1839
+ ## 0.15.3 (2024-02-11)
1840
+
1841
+ ### Changed
1842
+
1843
+ * 🐞 fix undici readablestream error ([#65](https://github.com/dotenvx/dotenvx/pull/65))
1844
+
1845
+ ## 0.15.2 (2024-02-11)
1846
+
1847
+ ### Changed
1848
+
1849
+ * switch from axios to undici ([#59](https://github.com/dotenvx/dotenvx/pull/59))
1850
+ * bump `dotenv-expand` ([#63](https://github.com/dotenvx/dotenvx/pull/63))
1851
+
1852
+ ## 0.15.1 (2024-02-10)
1853
+
1854
+ ### Changed
1855
+
1856
+ * use improved dotenv expansion ([#62](https://github.com/dotenvx/dotenvx/pull/62))
1857
+
1858
+ ## 0.15.0 (2024-02-06)
1859
+
1860
+ ### Added
1861
+
1862
+ * add expansion ([#60](https://github.com/dotenvx/dotenvx/pull/60))
1863
+ * use `dotenvx.com` ([#56](https://github.com/dotenvx/dotenvx/pull/56))
1864
+
1865
+ ## 0.14.1 (2024-01-27)
1866
+
1867
+ ### Changed
1868
+
1869
+ * patch esm issue. use update-notifier ^5.1.0
1870
+
1871
+ ## 0.14.0 (2024-01-27)
1872
+
1873
+ ### Added
1874
+
1875
+ * Added `genexample` command. Generate `.env.example` from your `.env` file. ([#49](https://github.com/dotenvx/dotenvx/pull/49))
1876
+ * couple security patches ([#50](https://github.com/dotenvx/dotenvx/pull/50), [#51](https://github.com/dotenvx/dotenvx/pull/51))
1877
+
1878
+ ## 0.13.0 (2024-01-27)
1879
+
1880
+ ### Added
1881
+
1882
+ * Added `decrypt` command. Decrypt `.env.vault` to prospective `.env*` files. `.env.keys` must be present. ([#48](https://github.com/dotenvx/dotenvx/pull/48))
1883
+
1884
+ ## 0.12.0 (2024-01-26)
1885
+
1886
+ ### Added
1887
+
1888
+ * Append to `.gitignore` with `gitignore` command (also `.dockerignore`, `.npmignore`, and `.vercelignore` if existing) ([#47](https://github.com/dotenvx/dotenvx/pull/47))
1889
+
1890
+ ## 0.11.0 (2024-01-25)
1891
+
1892
+ ### Removed
1893
+
1894
+ * no longer append to `*ignore` files automatically. too invasive. will provide as separate cli command ([#45](https://github.com/dotenvx/dotenvx/pull/45))
1895
+
1896
+ ## 0.10.6 (2024-01-24)
1897
+
1898
+ ### Changed
1899
+
1900
+ * Improve error message when decryption fails ([#40](https://github.com/dotenvx/dotenvx/pull/40))
1901
+
1902
+ ## 0.10.5 (2024-01-17)
1903
+
1904
+ ### Changed
1905
+
1906
+ * Rename `predockerbuild` command to `prebuild` ([#36](https://github.com/dotenvx/pull/36))
1907
+
1908
+ ## 0.10.4 (2024-01-17)
1909
+
1910
+ ### Added
1911
+
1912
+ * Add `predockerbuild` command to prevent including `.env` file in your docker builds ([#35](https://github.com/dotenvx/pull/35))
1913
+
1914
+ ## 0.10.3 (2024-01-17)
1915
+
1916
+ ### Changed
1917
+
1918
+ * If dotenvx is missing tell user how to install it from pre-commit ([#34](https://github.com/dotenvx/pull/34))
1919
+ * Add help notice for ci (when .env file not present) ([#33](https://github.com/dotenvx/pull/33))
1920
+
1921
+ ## 0.10.2 (2024-01-14)
1922
+
1923
+ ### Changed
1924
+
1925
+ * Improve error message when custom `--env-file` passed ([#32](https://github.com/dotenvx/pull/32))
1926
+
1927
+ ## 0.10.1 (2024-01-14)
1928
+
1929
+ ### Changed
1930
+
1931
+ * Adjust `precommit` verbosity and coloring
1932
+ * Add `--install` flag to precommit - installs to `.git/hooks/pre-commit` ([#31](https://github.com/dotenvx/dotenvx/pull/31))
1933
+
1934
+ ## 0.10.0 (2024-01-13)
1935
+
1936
+ ### Added
1937
+
1938
+ * Added `dotenvx precommit` command and instructions for git pre-commit hook ([#30](https://github.com/dotenvx/dotenvx/pull/30))
1939
+
1940
+ ## 0.9.0 (2024-01-13)
1941
+
1942
+ ### Changed
1943
+
1944
+ * Remove `.flaskenv` from appends ([#27](https://github.com/dotenvx/dotenvx/pull/27))
1945
+ * Improved error message when .env file is missing ([#28](https://github.com/dotenvx/dotenvx/pull/28))
1946
+
1947
+ ## 0.8.4 (2024-01-11)
1948
+
1949
+ ### Changed
1950
+
1951
+ Load `axios` with a try/catch depending on context 🐞 ([#24](https://github.com/dotenvx/dotenvx/pull/24))
1952
+
1953
+ ## 0.8.3 (2024-01-11)
1954
+
1955
+ ### Changed
1956
+
1957
+ Patched `helpers.guessEnvironment` bug when filepath contained a `.` in the folder name. 🐞 ([#23](https://github.com/dotenvx/dotenvx/pull/23))
1958
+
1959
+ ## 0.8.2 (2024-01-04)
1960
+
1961
+ ### Changed
1962
+
1963
+ Change path to axios in attempt for `pkg` to build correctly.
1964
+
1965
+ ## 0.8.1 (2024-01-04)
1966
+
1967
+ ### Added
1968
+
1969
+ Add axios (missing) to `package-lock.json`
1970
+
1971
+ ## 0.8.0 (2024-01-04)
1972
+
1973
+ ### Added
1974
+
1975
+ Added [hub](https://hub.dotenvx.com) support. 🎉 ([#16](https://github.com/dotenvx/dotenvx/pull/16))
1976
+
1977
+ ## 0.7.4 (2023-12-22)
1978
+
1979
+ ### Changed
1980
+
1981
+ Create binaries with root:root defaults. ([#21](https://github.com/dotenvx/dotenvx/pull/21))
1982
+
1983
+ ## 0.7.3 (2023-12-22)
1984
+
1985
+ ### Added
1986
+
1987
+ Tell user about undefined subprocess with additional `debug` logs ([#19](https://github.com/dotenvx/dotenvx/pull/19))
1988
+
1989
+ ## 0.7.2 (2023-12-22)
1990
+
1991
+ ### Added
1992
+
1993
+ `debug` other signals send to execa process ([#18](https://github.com/dotenvx/dotenvx/pull/18))
1994
+
1995
+ ## 0.7.1 (2023-12-22)
1996
+
1997
+ ### Changed
1998
+
1999
+ Fix missed package.json#version
2000
+
2001
+ ## 0.7.0 (2023-12-22)
2002
+
2003
+ ### Added
2004
+
2005
+ handle `SIGINT` ([#17](https://github.com/dotenvx/dotenvx/pull/17))
2006
+
2007
+ ## 0.6.13 (2023-12-02)
2008
+
2009
+ write to `/latest` only for [releases](https://github.com/dotenvx/releases) repo ([#15](https://github.com/dotenvx/dotenvx/pull/15))
2010
+
2011
+ ## 0.6.12 (2023-12-01)
2012
+
2013
+ ### Changed
2014
+
2015
+ do not package README alongside binary. adds noise to a user's machine. keep their machine shiny. ([#14](https://github.com/dotenvx/dotenvx/pull/14))
2016
+
2017
+ ## 0.6.11 (2023-12-01)
2018
+
2019
+ ### Added
2020
+
2021
+ tell user what to do next ([#13](https://github.com/dotenvx/dotenvx/pull/13))
2022
+
2023
+ ## 0.6.10 (2023-12-01)
2024
+
2025
+ ### Patched
2026
+
2027
+ do not log when error code is 0 ([#12](https://github.com/dotenvx/dotenvx/pull/12))
2028
+
2029
+ ## 0.6.9 (2023-12-01)
2030
+
2031
+ ### Added
2032
+
2033
+ tell user when no changes to re-encrypt ([#11](https://github.com/dotenvx/dotenvx/pull/11))
2034
+
2035
+ ## 0.6.8 (2023-12-01)
2036
+
2037
+ ### Added
2038
+
2039
+ added help text when user's command fails. include link to report issue ([#10](https://github.com/dotenvx/dotenvx/pull/10))
2040
+
2041
+ ## 0.6.7 (2023-12-01)
2042
+
2043
+ ## Added
2044
+
2045
+ added next step help message when running `dotenvx run` with no argument ([#9](https://github.com/dotenvx/dotenvx/pull/9))
2046
+
2047
+
2048
+ ## 0.6.6 (2023-12-01)
2049
+
2050
+ ### Added
2051
+
2052
+ help includes a command example as well as a full working 'try it out' example ([#8](https://github.com/dotenvx/dotenvx/pull/8))
2053
+
2054
+ ## 0.6.5 (2023-12-01)
2055
+
2056
+ ### Changed
2057
+
2058
+ made the info messaging more succinct ([#7](https://github.com/dotenvx/dotenvx/pull/7))
2059
+
2060
+ ## 0.6.4 (2023-11-29)
2061
+
2062
+ ### Added
2063
+
2064
+ added tagged images to [hub.docker.com/u/dotenv](https://hub.docker.com/r/dotenv/dotenvx/tags)
2065
+
2066
+ ## 0.6.3 (2023-11-29)
2067
+
2068
+ ### Changed
2069
+
2070
+ fixed the `.env.keys` file comment. spacing was off. ([#6](https://github.com/dotenvx/dotenvx/pull/6))
2071
+
2072
+ ## 0.6.2 (2023-11-28)
2073
+
2074
+ ### Added
2075
+
2076
+ added help text to `encrypt`. ([#5](https://github.com/dotenvx/dotenvx/pull/5))
2077
+
2078
+ ## 0.6.1 (2023-11-28)
2079
+
2080
+ ### Changed
2081
+
2082
+ removed the `pad` on the logging level. didn't look good when running in default INFO mode. ([#4](https://github.com/dotenvx/dotenvx/pull/4))
2083
+
2084
+ ## 0.6.0 (2023-11-28)
2085
+
2086
+ ### Added
2087
+
2088
+ prevent committing a `.env*` file to code. append to `.gitignore`, `.dockerignore`, `.vercelignore`, and `.npmignore` 🗂️ ([#3](https://github.com/dotenvx/dotenvx/pull/3))
2089
+
2090
+ ## 0.5.0 (2023-11-27)
2091
+
2092
+ ### Added
2093
+
2094
+ `run` support for `.env.vault` files 🔑 ([#2](https://github.com/dotenvx/dotenvx/pull/2))
2095
+
2096
+ ## 0.4.0 (2023-11-27)
2097
+
2098
+ ### Added
2099
+
2100
+ `encrypt` 🔐 ([#1](https://github.com/dotenvx/dotenvx/pull/1))
2101
+
2102
+ ## 0.3.9 and prior (2023-11-26)
2103
+
2104
+ Please see commit history.