create-microact-app 1.0.1 → 1.0.2

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 (264) hide show
  1. package/package.json +1 -1
  2. package/templates/vanilla/package.json +1 -1
  3. package/templates/vanilla/src/components/App.js +22 -35
  4. package/templates/vanilla/src/components/Card.js +5 -12
  5. package/templates/vanilla/src/components/Hero.js +6 -8
  6. package/templates/vanilla/src/components/InteractiveDemo.js +34 -32
  7. package/templates/vanilla/src/main.js +2 -6
  8. package/templates/web3/contracts/.gitmodules +3 -0
  9. package/templates/web3/contracts/foundry.lock +8 -0
  10. package/templates/web3/contracts/lib/forge-std/.gitattributes +1 -0
  11. package/templates/web3/contracts/lib/forge-std/.github/CODEOWNERS +1 -0
  12. package/templates/web3/contracts/lib/forge-std/.github/dependabot.yml +6 -0
  13. package/templates/web3/contracts/lib/forge-std/.github/workflows/ci.yml +125 -0
  14. package/templates/web3/contracts/lib/forge-std/.github/workflows/sync.yml +36 -0
  15. package/templates/web3/contracts/lib/forge-std/CONTRIBUTING.md +193 -0
  16. package/templates/web3/contracts/lib/forge-std/LICENSE-APACHE +203 -0
  17. package/templates/web3/contracts/lib/forge-std/LICENSE-MIT +25 -0
  18. package/templates/web3/contracts/lib/forge-std/README.md +268 -0
  19. package/templates/web3/contracts/lib/forge-std/RELEASE_CHECKLIST.md +12 -0
  20. package/templates/web3/contracts/lib/forge-std/foundry.toml +18 -0
  21. package/templates/web3/contracts/lib/forge-std/package.json +16 -0
  22. package/templates/web3/contracts/lib/forge-std/scripts/vm.py +636 -0
  23. package/templates/web3/contracts/lib/forge-std/src/Base.sol +48 -0
  24. package/templates/web3/contracts/lib/forge-std/src/Config.sol +60 -0
  25. package/templates/web3/contracts/lib/forge-std/src/LibVariable.sol +477 -0
  26. package/templates/web3/contracts/lib/forge-std/src/Script.sol +28 -0
  27. package/templates/web3/contracts/lib/forge-std/src/StdAssertions.sol +779 -0
  28. package/templates/web3/contracts/lib/forge-std/src/StdChains.sol +295 -0
  29. package/templates/web3/contracts/lib/forge-std/src/StdCheats.sol +825 -0
  30. package/templates/web3/contracts/lib/forge-std/src/StdConfig.sol +632 -0
  31. package/templates/web3/contracts/lib/forge-std/src/StdConstants.sol +30 -0
  32. package/templates/web3/contracts/lib/forge-std/src/StdError.sol +15 -0
  33. package/templates/web3/contracts/lib/forge-std/src/StdInvariant.sol +120 -0
  34. package/templates/web3/contracts/lib/forge-std/src/StdJson.sol +275 -0
  35. package/templates/web3/contracts/lib/forge-std/src/StdMath.sol +47 -0
  36. package/templates/web3/contracts/lib/forge-std/src/StdStorage.sol +475 -0
  37. package/templates/web3/contracts/lib/forge-std/src/StdStyle.sol +333 -0
  38. package/templates/web3/contracts/lib/forge-std/src/StdToml.sol +275 -0
  39. package/templates/web3/contracts/lib/forge-std/src/StdUtils.sol +200 -0
  40. package/templates/web3/contracts/lib/forge-std/src/Test.sol +32 -0
  41. package/templates/web3/contracts/lib/forge-std/src/Vm.sol +2500 -0
  42. package/templates/web3/contracts/lib/forge-std/src/console.sol +1551 -0
  43. package/templates/web3/contracts/lib/forge-std/src/console2.sol +4 -0
  44. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC1155.sol +105 -0
  45. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC165.sol +12 -0
  46. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC20.sol +43 -0
  47. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC4626.sol +190 -0
  48. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC6909.sol +72 -0
  49. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC721.sol +164 -0
  50. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC7540.sol +144 -0
  51. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC7575.sol +241 -0
  52. package/templates/web3/contracts/lib/forge-std/src/interfaces/IMulticall3.sol +68 -0
  53. package/templates/web3/contracts/lib/forge-std/src/safeconsole.sol +13248 -0
  54. package/templates/web3/contracts/lib/forge-std/test/CommonBase.t.sol +44 -0
  55. package/templates/web3/contracts/lib/forge-std/test/Config.t.sol +381 -0
  56. package/templates/web3/contracts/lib/forge-std/test/LibVariable.t.sol +452 -0
  57. package/templates/web3/contracts/lib/forge-std/test/StdAssertions.t.sol +141 -0
  58. package/templates/web3/contracts/lib/forge-std/test/StdChains.t.sol +227 -0
  59. package/templates/web3/contracts/lib/forge-std/test/StdCheats.t.sol +638 -0
  60. package/templates/web3/contracts/lib/forge-std/test/StdConstants.t.sol +38 -0
  61. package/templates/web3/contracts/lib/forge-std/test/StdError.t.sol +119 -0
  62. package/templates/web3/contracts/lib/forge-std/test/StdJson.t.sol +49 -0
  63. package/templates/web3/contracts/lib/forge-std/test/StdMath.t.sol +202 -0
  64. package/templates/web3/contracts/lib/forge-std/test/StdStorage.t.sol +485 -0
  65. package/templates/web3/contracts/lib/forge-std/test/StdStyle.t.sol +110 -0
  66. package/templates/web3/contracts/lib/forge-std/test/StdToml.t.sol +49 -0
  67. package/templates/web3/contracts/lib/forge-std/test/StdUtils.t.sol +342 -0
  68. package/templates/web3/contracts/lib/forge-std/test/Vm.t.sol +18 -0
  69. package/templates/web3/contracts/lib/forge-std/test/compilation/CompilationScript.sol +8 -0
  70. package/templates/web3/contracts/lib/forge-std/test/compilation/CompilationScriptBase.sol +8 -0
  71. package/templates/web3/contracts/lib/forge-std/test/compilation/CompilationTest.sol +8 -0
  72. package/templates/web3/contracts/lib/forge-std/test/compilation/CompilationTestBase.sol +8 -0
  73. package/templates/web3/contracts/lib/forge-std/test/fixtures/broadcast.log.json +187 -0
  74. package/templates/web3/contracts/lib/forge-std/test/fixtures/config.toml +81 -0
  75. package/templates/web3/contracts/lib/forge-std/test/fixtures/test.json +8 -0
  76. package/templates/web3/contracts/lib/forge-std/test/fixtures/test.toml +6 -0
  77. package/templates/web3/package.json +1 -1
  78. package/templates/web3/src/components/App.js +23 -36
  79. package/templates/web3/src/components/CounterCard.js +45 -45
  80. package/templates/web3/src/main.js +5 -7
  81. package/templates/vanilla/node_modules/.package-lock.json +0 -207
  82. package/templates/vanilla/node_modules/@esbuild/darwin-x64/README.md +0 -3
  83. package/templates/vanilla/node_modules/@esbuild/darwin-x64/bin/esbuild +0 -0
  84. package/templates/vanilla/node_modules/@esbuild/darwin-x64/package.json +0 -17
  85. package/templates/vanilla/node_modules/@monygroupcorp/microact/README.md +0 -154
  86. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.cjs.js +0 -1749
  87. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.cjs.js.map +0 -1
  88. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.esm.js +0 -1743
  89. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.esm.js.map +0 -1
  90. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.umd.js +0 -2
  91. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.umd.js.map +0 -1
  92. package/templates/vanilla/node_modules/@monygroupcorp/microact/example/index.html +0 -13
  93. package/templates/vanilla/node_modules/@monygroupcorp/microact/example/index.js +0 -63
  94. package/templates/vanilla/node_modules/@monygroupcorp/microact/package.json +0 -38
  95. package/templates/vanilla/node_modules/@monygroupcorp/microact/rollup.config.cjs +0 -30
  96. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/Component.js +0 -831
  97. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/DOMUpdater.js +0 -320
  98. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/EventBus.js +0 -123
  99. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/Router.js +0 -253
  100. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/UpdateScheduler.js +0 -218
  101. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/index.js +0 -6
  102. package/templates/vanilla/node_modules/esbuild/LICENSE.md +0 -21
  103. package/templates/vanilla/node_modules/esbuild/README.md +0 -3
  104. package/templates/vanilla/node_modules/esbuild/bin/esbuild +0 -0
  105. package/templates/vanilla/node_modules/esbuild/install.js +0 -287
  106. package/templates/vanilla/node_modules/esbuild/lib/main.d.ts +0 -660
  107. package/templates/vanilla/node_modules/esbuild/lib/main.js +0 -2393
  108. package/templates/vanilla/node_modules/esbuild/package.json +0 -42
  109. package/templates/vanilla/node_modules/nanoid/LICENSE +0 -20
  110. package/templates/vanilla/node_modules/nanoid/README.md +0 -39
  111. package/templates/vanilla/node_modules/nanoid/async/index.browser.cjs +0 -69
  112. package/templates/vanilla/node_modules/nanoid/async/index.browser.js +0 -34
  113. package/templates/vanilla/node_modules/nanoid/async/index.cjs +0 -71
  114. package/templates/vanilla/node_modules/nanoid/async/index.d.ts +0 -56
  115. package/templates/vanilla/node_modules/nanoid/async/index.js +0 -35
  116. package/templates/vanilla/node_modules/nanoid/async/index.native.js +0 -26
  117. package/templates/vanilla/node_modules/nanoid/async/package.json +0 -12
  118. package/templates/vanilla/node_modules/nanoid/bin/nanoid.cjs +0 -55
  119. package/templates/vanilla/node_modules/nanoid/index.browser.cjs +0 -72
  120. package/templates/vanilla/node_modules/nanoid/index.browser.js +0 -34
  121. package/templates/vanilla/node_modules/nanoid/index.cjs +0 -85
  122. package/templates/vanilla/node_modules/nanoid/index.d.cts +0 -91
  123. package/templates/vanilla/node_modules/nanoid/index.d.ts +0 -91
  124. package/templates/vanilla/node_modules/nanoid/index.js +0 -45
  125. package/templates/vanilla/node_modules/nanoid/nanoid.js +0 -1
  126. package/templates/vanilla/node_modules/nanoid/non-secure/index.cjs +0 -34
  127. package/templates/vanilla/node_modules/nanoid/non-secure/index.d.ts +0 -33
  128. package/templates/vanilla/node_modules/nanoid/non-secure/index.js +0 -21
  129. package/templates/vanilla/node_modules/nanoid/non-secure/package.json +0 -6
  130. package/templates/vanilla/node_modules/nanoid/package.json +0 -89
  131. package/templates/vanilla/node_modules/nanoid/url-alphabet/index.cjs +0 -7
  132. package/templates/vanilla/node_modules/nanoid/url-alphabet/index.js +0 -3
  133. package/templates/vanilla/node_modules/nanoid/url-alphabet/package.json +0 -6
  134. package/templates/vanilla/node_modules/picocolors/LICENSE +0 -15
  135. package/templates/vanilla/node_modules/picocolors/README.md +0 -21
  136. package/templates/vanilla/node_modules/picocolors/package.json +0 -25
  137. package/templates/vanilla/node_modules/picocolors/picocolors.browser.js +0 -4
  138. package/templates/vanilla/node_modules/picocolors/picocolors.d.ts +0 -5
  139. package/templates/vanilla/node_modules/picocolors/picocolors.js +0 -75
  140. package/templates/vanilla/node_modules/picocolors/types.d.ts +0 -51
  141. package/templates/vanilla/node_modules/postcss/LICENSE +0 -20
  142. package/templates/vanilla/node_modules/postcss/README.md +0 -29
  143. package/templates/vanilla/node_modules/postcss/lib/at-rule.d.ts +0 -140
  144. package/templates/vanilla/node_modules/postcss/lib/at-rule.js +0 -25
  145. package/templates/vanilla/node_modules/postcss/lib/comment.d.ts +0 -68
  146. package/templates/vanilla/node_modules/postcss/lib/comment.js +0 -13
  147. package/templates/vanilla/node_modules/postcss/lib/container.d.ts +0 -483
  148. package/templates/vanilla/node_modules/postcss/lib/container.js +0 -447
  149. package/templates/vanilla/node_modules/postcss/lib/css-syntax-error.d.ts +0 -248
  150. package/templates/vanilla/node_modules/postcss/lib/css-syntax-error.js +0 -133
  151. package/templates/vanilla/node_modules/postcss/lib/declaration.d.ts +0 -151
  152. package/templates/vanilla/node_modules/postcss/lib/declaration.js +0 -24
  153. package/templates/vanilla/node_modules/postcss/lib/document.d.ts +0 -69
  154. package/templates/vanilla/node_modules/postcss/lib/document.js +0 -33
  155. package/templates/vanilla/node_modules/postcss/lib/fromJSON.d.ts +0 -9
  156. package/templates/vanilla/node_modules/postcss/lib/fromJSON.js +0 -54
  157. package/templates/vanilla/node_modules/postcss/lib/input.d.ts +0 -227
  158. package/templates/vanilla/node_modules/postcss/lib/input.js +0 -265
  159. package/templates/vanilla/node_modules/postcss/lib/lazy-result.d.ts +0 -190
  160. package/templates/vanilla/node_modules/postcss/lib/lazy-result.js +0 -550
  161. package/templates/vanilla/node_modules/postcss/lib/list.d.ts +0 -60
  162. package/templates/vanilla/node_modules/postcss/lib/list.js +0 -58
  163. package/templates/vanilla/node_modules/postcss/lib/map-generator.js +0 -368
  164. package/templates/vanilla/node_modules/postcss/lib/no-work-result.d.ts +0 -46
  165. package/templates/vanilla/node_modules/postcss/lib/no-work-result.js +0 -138
  166. package/templates/vanilla/node_modules/postcss/lib/node.d.ts +0 -556
  167. package/templates/vanilla/node_modules/postcss/lib/node.js +0 -449
  168. package/templates/vanilla/node_modules/postcss/lib/parse.d.ts +0 -9
  169. package/templates/vanilla/node_modules/postcss/lib/parse.js +0 -42
  170. package/templates/vanilla/node_modules/postcss/lib/parser.js +0 -611
  171. package/templates/vanilla/node_modules/postcss/lib/postcss.d.mts +0 -69
  172. package/templates/vanilla/node_modules/postcss/lib/postcss.d.ts +0 -458
  173. package/templates/vanilla/node_modules/postcss/lib/postcss.js +0 -101
  174. package/templates/vanilla/node_modules/postcss/lib/postcss.mjs +0 -30
  175. package/templates/vanilla/node_modules/postcss/lib/previous-map.d.ts +0 -81
  176. package/templates/vanilla/node_modules/postcss/lib/previous-map.js +0 -144
  177. package/templates/vanilla/node_modules/postcss/lib/processor.d.ts +0 -115
  178. package/templates/vanilla/node_modules/postcss/lib/processor.js +0 -67
  179. package/templates/vanilla/node_modules/postcss/lib/result.d.ts +0 -205
  180. package/templates/vanilla/node_modules/postcss/lib/result.js +0 -42
  181. package/templates/vanilla/node_modules/postcss/lib/root.d.ts +0 -87
  182. package/templates/vanilla/node_modules/postcss/lib/root.js +0 -61
  183. package/templates/vanilla/node_modules/postcss/lib/rule.d.ts +0 -126
  184. package/templates/vanilla/node_modules/postcss/lib/rule.js +0 -27
  185. package/templates/vanilla/node_modules/postcss/lib/stringifier.d.ts +0 -46
  186. package/templates/vanilla/node_modules/postcss/lib/stringifier.js +0 -353
  187. package/templates/vanilla/node_modules/postcss/lib/stringify.d.ts +0 -9
  188. package/templates/vanilla/node_modules/postcss/lib/stringify.js +0 -11
  189. package/templates/vanilla/node_modules/postcss/lib/symbols.js +0 -5
  190. package/templates/vanilla/node_modules/postcss/lib/terminal-highlight.js +0 -70
  191. package/templates/vanilla/node_modules/postcss/lib/tokenize.js +0 -266
  192. package/templates/vanilla/node_modules/postcss/lib/warn-once.js +0 -13
  193. package/templates/vanilla/node_modules/postcss/lib/warning.d.ts +0 -147
  194. package/templates/vanilla/node_modules/postcss/lib/warning.js +0 -37
  195. package/templates/vanilla/node_modules/postcss/package.json +0 -88
  196. package/templates/vanilla/node_modules/rollup/LICENSE.md +0 -695
  197. package/templates/vanilla/node_modules/rollup/README.md +0 -125
  198. package/templates/vanilla/node_modules/rollup/dist/bin/rollup +0 -1715
  199. package/templates/vanilla/node_modules/rollup/dist/es/getLogFilter.js +0 -64
  200. package/templates/vanilla/node_modules/rollup/dist/es/package.json +0 -1
  201. package/templates/vanilla/node_modules/rollup/dist/es/rollup.js +0 -17
  202. package/templates/vanilla/node_modules/rollup/dist/es/shared/node-entry.js +0 -27273
  203. package/templates/vanilla/node_modules/rollup/dist/es/shared/watch.js +0 -4857
  204. package/templates/vanilla/node_modules/rollup/dist/getLogFilter.d.ts +0 -5
  205. package/templates/vanilla/node_modules/rollup/dist/getLogFilter.js +0 -69
  206. package/templates/vanilla/node_modules/rollup/dist/loadConfigFile.d.ts +0 -20
  207. package/templates/vanilla/node_modules/rollup/dist/loadConfigFile.js +0 -29
  208. package/templates/vanilla/node_modules/rollup/dist/rollup.d.ts +0 -1012
  209. package/templates/vanilla/node_modules/rollup/dist/rollup.js +0 -31
  210. package/templates/vanilla/node_modules/rollup/dist/shared/fsevents-importer.js +0 -37
  211. package/templates/vanilla/node_modules/rollup/dist/shared/index.js +0 -4571
  212. package/templates/vanilla/node_modules/rollup/dist/shared/loadConfigFile.js +0 -546
  213. package/templates/vanilla/node_modules/rollup/dist/shared/rollup.js +0 -27351
  214. package/templates/vanilla/node_modules/rollup/dist/shared/watch-cli.js +0 -561
  215. package/templates/vanilla/node_modules/rollup/dist/shared/watch-proxy.js +0 -87
  216. package/templates/vanilla/node_modules/rollup/dist/shared/watch.js +0 -316
  217. package/templates/vanilla/node_modules/rollup/package.json +0 -181
  218. package/templates/vanilla/node_modules/source-map-js/LICENSE +0 -28
  219. package/templates/vanilla/node_modules/source-map-js/README.md +0 -765
  220. package/templates/vanilla/node_modules/source-map-js/lib/array-set.js +0 -121
  221. package/templates/vanilla/node_modules/source-map-js/lib/base64-vlq.js +0 -140
  222. package/templates/vanilla/node_modules/source-map-js/lib/base64.js +0 -67
  223. package/templates/vanilla/node_modules/source-map-js/lib/binary-search.js +0 -111
  224. package/templates/vanilla/node_modules/source-map-js/lib/mapping-list.js +0 -79
  225. package/templates/vanilla/node_modules/source-map-js/lib/quick-sort.js +0 -132
  226. package/templates/vanilla/node_modules/source-map-js/lib/source-map-consumer.d.ts +0 -1
  227. package/templates/vanilla/node_modules/source-map-js/lib/source-map-consumer.js +0 -1188
  228. package/templates/vanilla/node_modules/source-map-js/lib/source-map-generator.d.ts +0 -1
  229. package/templates/vanilla/node_modules/source-map-js/lib/source-map-generator.js +0 -444
  230. package/templates/vanilla/node_modules/source-map-js/lib/source-node.d.ts +0 -1
  231. package/templates/vanilla/node_modules/source-map-js/lib/source-node.js +0 -413
  232. package/templates/vanilla/node_modules/source-map-js/lib/util.js +0 -594
  233. package/templates/vanilla/node_modules/source-map-js/package.json +0 -71
  234. package/templates/vanilla/node_modules/source-map-js/source-map.d.ts +0 -104
  235. package/templates/vanilla/node_modules/source-map-js/source-map.js +0 -8
  236. package/templates/vanilla/node_modules/vite/LICENSE.md +0 -3396
  237. package/templates/vanilla/node_modules/vite/README.md +0 -20
  238. package/templates/vanilla/node_modules/vite/bin/openChrome.applescript +0 -95
  239. package/templates/vanilla/node_modules/vite/bin/vite.js +0 -61
  240. package/templates/vanilla/node_modules/vite/client.d.ts +0 -281
  241. package/templates/vanilla/node_modules/vite/dist/client/client.mjs +0 -725
  242. package/templates/vanilla/node_modules/vite/dist/client/client.mjs.map +0 -1
  243. package/templates/vanilla/node_modules/vite/dist/client/env.mjs +0 -30
  244. package/templates/vanilla/node_modules/vite/dist/client/env.mjs.map +0 -1
  245. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-7ec6f216.js +0 -914
  246. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-827b23df.js +0 -66713
  247. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-c423598f.js +0 -561
  248. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-f0c7dae0.js +0 -7930
  249. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-f1e8587f.js +0 -7646
  250. package/templates/vanilla/node_modules/vite/dist/node/cli.js +0 -929
  251. package/templates/vanilla/node_modules/vite/dist/node/constants.js +0 -130
  252. package/templates/vanilla/node_modules/vite/dist/node/index.d.ts +0 -3548
  253. package/templates/vanilla/node_modules/vite/dist/node/index.js +0 -158
  254. package/templates/vanilla/node_modules/vite/dist/node-cjs/publicUtils.cjs +0 -4555
  255. package/templates/vanilla/node_modules/vite/index.cjs +0 -34
  256. package/templates/vanilla/node_modules/vite/package.json +0 -173
  257. package/templates/vanilla/node_modules/vite/types/customEvent.d.ts +0 -35
  258. package/templates/vanilla/node_modules/vite/types/hmrPayload.d.ts +0 -61
  259. package/templates/vanilla/node_modules/vite/types/hot.d.ts +0 -32
  260. package/templates/vanilla/node_modules/vite/types/importGlob.d.ts +0 -97
  261. package/templates/vanilla/node_modules/vite/types/importMeta.d.ts +0 -26
  262. package/templates/vanilla/node_modules/vite/types/metadata.d.ts +0 -10
  263. package/templates/vanilla/node_modules/vite/types/package.json +0 -4
  264. package/templates/vanilla/package-lock.json +0 -589
@@ -1,589 +0,0 @@
1
- {
2
- "name": "my-app",
3
- "version": "0.0.0",
4
- "lockfileVersion": 3,
5
- "requires": true,
6
- "packages": {
7
- "": {
8
- "name": "my-app",
9
- "version": "0.0.0",
10
- "dependencies": {
11
- "@monygroupcorp/microact": "^0.1.1"
12
- },
13
- "devDependencies": {
14
- "vite": "^4.4.5"
15
- }
16
- },
17
- "node_modules/@esbuild/android-arm": {
18
- "version": "0.18.20",
19
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz",
20
- "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==",
21
- "cpu": [
22
- "arm"
23
- ],
24
- "dev": true,
25
- "license": "MIT",
26
- "optional": true,
27
- "os": [
28
- "android"
29
- ],
30
- "engines": {
31
- "node": ">=12"
32
- }
33
- },
34
- "node_modules/@esbuild/android-arm64": {
35
- "version": "0.18.20",
36
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz",
37
- "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==",
38
- "cpu": [
39
- "arm64"
40
- ],
41
- "dev": true,
42
- "license": "MIT",
43
- "optional": true,
44
- "os": [
45
- "android"
46
- ],
47
- "engines": {
48
- "node": ">=12"
49
- }
50
- },
51
- "node_modules/@esbuild/android-x64": {
52
- "version": "0.18.20",
53
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz",
54
- "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==",
55
- "cpu": [
56
- "x64"
57
- ],
58
- "dev": true,
59
- "license": "MIT",
60
- "optional": true,
61
- "os": [
62
- "android"
63
- ],
64
- "engines": {
65
- "node": ">=12"
66
- }
67
- },
68
- "node_modules/@esbuild/darwin-arm64": {
69
- "version": "0.18.20",
70
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz",
71
- "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==",
72
- "cpu": [
73
- "arm64"
74
- ],
75
- "dev": true,
76
- "license": "MIT",
77
- "optional": true,
78
- "os": [
79
- "darwin"
80
- ],
81
- "engines": {
82
- "node": ">=12"
83
- }
84
- },
85
- "node_modules/@esbuild/darwin-x64": {
86
- "version": "0.18.20",
87
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz",
88
- "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==",
89
- "cpu": [
90
- "x64"
91
- ],
92
- "dev": true,
93
- "license": "MIT",
94
- "optional": true,
95
- "os": [
96
- "darwin"
97
- ],
98
- "engines": {
99
- "node": ">=12"
100
- }
101
- },
102
- "node_modules/@esbuild/freebsd-arm64": {
103
- "version": "0.18.20",
104
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz",
105
- "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==",
106
- "cpu": [
107
- "arm64"
108
- ],
109
- "dev": true,
110
- "license": "MIT",
111
- "optional": true,
112
- "os": [
113
- "freebsd"
114
- ],
115
- "engines": {
116
- "node": ">=12"
117
- }
118
- },
119
- "node_modules/@esbuild/freebsd-x64": {
120
- "version": "0.18.20",
121
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz",
122
- "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==",
123
- "cpu": [
124
- "x64"
125
- ],
126
- "dev": true,
127
- "license": "MIT",
128
- "optional": true,
129
- "os": [
130
- "freebsd"
131
- ],
132
- "engines": {
133
- "node": ">=12"
134
- }
135
- },
136
- "node_modules/@esbuild/linux-arm": {
137
- "version": "0.18.20",
138
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz",
139
- "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==",
140
- "cpu": [
141
- "arm"
142
- ],
143
- "dev": true,
144
- "license": "MIT",
145
- "optional": true,
146
- "os": [
147
- "linux"
148
- ],
149
- "engines": {
150
- "node": ">=12"
151
- }
152
- },
153
- "node_modules/@esbuild/linux-arm64": {
154
- "version": "0.18.20",
155
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz",
156
- "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==",
157
- "cpu": [
158
- "arm64"
159
- ],
160
- "dev": true,
161
- "license": "MIT",
162
- "optional": true,
163
- "os": [
164
- "linux"
165
- ],
166
- "engines": {
167
- "node": ">=12"
168
- }
169
- },
170
- "node_modules/@esbuild/linux-ia32": {
171
- "version": "0.18.20",
172
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz",
173
- "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==",
174
- "cpu": [
175
- "ia32"
176
- ],
177
- "dev": true,
178
- "license": "MIT",
179
- "optional": true,
180
- "os": [
181
- "linux"
182
- ],
183
- "engines": {
184
- "node": ">=12"
185
- }
186
- },
187
- "node_modules/@esbuild/linux-loong64": {
188
- "version": "0.18.20",
189
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz",
190
- "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==",
191
- "cpu": [
192
- "loong64"
193
- ],
194
- "dev": true,
195
- "license": "MIT",
196
- "optional": true,
197
- "os": [
198
- "linux"
199
- ],
200
- "engines": {
201
- "node": ">=12"
202
- }
203
- },
204
- "node_modules/@esbuild/linux-mips64el": {
205
- "version": "0.18.20",
206
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz",
207
- "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==",
208
- "cpu": [
209
- "mips64el"
210
- ],
211
- "dev": true,
212
- "license": "MIT",
213
- "optional": true,
214
- "os": [
215
- "linux"
216
- ],
217
- "engines": {
218
- "node": ">=12"
219
- }
220
- },
221
- "node_modules/@esbuild/linux-ppc64": {
222
- "version": "0.18.20",
223
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz",
224
- "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==",
225
- "cpu": [
226
- "ppc64"
227
- ],
228
- "dev": true,
229
- "license": "MIT",
230
- "optional": true,
231
- "os": [
232
- "linux"
233
- ],
234
- "engines": {
235
- "node": ">=12"
236
- }
237
- },
238
- "node_modules/@esbuild/linux-riscv64": {
239
- "version": "0.18.20",
240
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz",
241
- "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==",
242
- "cpu": [
243
- "riscv64"
244
- ],
245
- "dev": true,
246
- "license": "MIT",
247
- "optional": true,
248
- "os": [
249
- "linux"
250
- ],
251
- "engines": {
252
- "node": ">=12"
253
- }
254
- },
255
- "node_modules/@esbuild/linux-s390x": {
256
- "version": "0.18.20",
257
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz",
258
- "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==",
259
- "cpu": [
260
- "s390x"
261
- ],
262
- "dev": true,
263
- "license": "MIT",
264
- "optional": true,
265
- "os": [
266
- "linux"
267
- ],
268
- "engines": {
269
- "node": ">=12"
270
- }
271
- },
272
- "node_modules/@esbuild/linux-x64": {
273
- "version": "0.18.20",
274
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz",
275
- "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==",
276
- "cpu": [
277
- "x64"
278
- ],
279
- "dev": true,
280
- "license": "MIT",
281
- "optional": true,
282
- "os": [
283
- "linux"
284
- ],
285
- "engines": {
286
- "node": ">=12"
287
- }
288
- },
289
- "node_modules/@esbuild/netbsd-x64": {
290
- "version": "0.18.20",
291
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz",
292
- "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==",
293
- "cpu": [
294
- "x64"
295
- ],
296
- "dev": true,
297
- "license": "MIT",
298
- "optional": true,
299
- "os": [
300
- "netbsd"
301
- ],
302
- "engines": {
303
- "node": ">=12"
304
- }
305
- },
306
- "node_modules/@esbuild/openbsd-x64": {
307
- "version": "0.18.20",
308
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz",
309
- "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==",
310
- "cpu": [
311
- "x64"
312
- ],
313
- "dev": true,
314
- "license": "MIT",
315
- "optional": true,
316
- "os": [
317
- "openbsd"
318
- ],
319
- "engines": {
320
- "node": ">=12"
321
- }
322
- },
323
- "node_modules/@esbuild/sunos-x64": {
324
- "version": "0.18.20",
325
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz",
326
- "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==",
327
- "cpu": [
328
- "x64"
329
- ],
330
- "dev": true,
331
- "license": "MIT",
332
- "optional": true,
333
- "os": [
334
- "sunos"
335
- ],
336
- "engines": {
337
- "node": ">=12"
338
- }
339
- },
340
- "node_modules/@esbuild/win32-arm64": {
341
- "version": "0.18.20",
342
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz",
343
- "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==",
344
- "cpu": [
345
- "arm64"
346
- ],
347
- "dev": true,
348
- "license": "MIT",
349
- "optional": true,
350
- "os": [
351
- "win32"
352
- ],
353
- "engines": {
354
- "node": ">=12"
355
- }
356
- },
357
- "node_modules/@esbuild/win32-ia32": {
358
- "version": "0.18.20",
359
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz",
360
- "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==",
361
- "cpu": [
362
- "ia32"
363
- ],
364
- "dev": true,
365
- "license": "MIT",
366
- "optional": true,
367
- "os": [
368
- "win32"
369
- ],
370
- "engines": {
371
- "node": ">=12"
372
- }
373
- },
374
- "node_modules/@esbuild/win32-x64": {
375
- "version": "0.18.20",
376
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz",
377
- "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==",
378
- "cpu": [
379
- "x64"
380
- ],
381
- "dev": true,
382
- "license": "MIT",
383
- "optional": true,
384
- "os": [
385
- "win32"
386
- ],
387
- "engines": {
388
- "node": ">=12"
389
- }
390
- },
391
- "node_modules/@monygroupcorp/microact": {
392
- "version": "0.1.1",
393
- "resolved": "https://registry.npmjs.org/@monygroupcorp/microact/-/microact-0.1.1.tgz",
394
- "integrity": "sha512-DaA02WzBEMiznRPvf/j+Oakp64N3A1ZqyVUN6SYZgBl10M570AAcfHFgQOTg/23K8bwn6Hk4GHY9DTuGYbWo9g==",
395
- "license": "MIT"
396
- },
397
- "node_modules/esbuild": {
398
- "version": "0.18.20",
399
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz",
400
- "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==",
401
- "dev": true,
402
- "hasInstallScript": true,
403
- "license": "MIT",
404
- "bin": {
405
- "esbuild": "bin/esbuild"
406
- },
407
- "engines": {
408
- "node": ">=12"
409
- },
410
- "optionalDependencies": {
411
- "@esbuild/android-arm": "0.18.20",
412
- "@esbuild/android-arm64": "0.18.20",
413
- "@esbuild/android-x64": "0.18.20",
414
- "@esbuild/darwin-arm64": "0.18.20",
415
- "@esbuild/darwin-x64": "0.18.20",
416
- "@esbuild/freebsd-arm64": "0.18.20",
417
- "@esbuild/freebsd-x64": "0.18.20",
418
- "@esbuild/linux-arm": "0.18.20",
419
- "@esbuild/linux-arm64": "0.18.20",
420
- "@esbuild/linux-ia32": "0.18.20",
421
- "@esbuild/linux-loong64": "0.18.20",
422
- "@esbuild/linux-mips64el": "0.18.20",
423
- "@esbuild/linux-ppc64": "0.18.20",
424
- "@esbuild/linux-riscv64": "0.18.20",
425
- "@esbuild/linux-s390x": "0.18.20",
426
- "@esbuild/linux-x64": "0.18.20",
427
- "@esbuild/netbsd-x64": "0.18.20",
428
- "@esbuild/openbsd-x64": "0.18.20",
429
- "@esbuild/sunos-x64": "0.18.20",
430
- "@esbuild/win32-arm64": "0.18.20",
431
- "@esbuild/win32-ia32": "0.18.20",
432
- "@esbuild/win32-x64": "0.18.20"
433
- }
434
- },
435
- "node_modules/fsevents": {
436
- "version": "2.3.3",
437
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
438
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
439
- "dev": true,
440
- "hasInstallScript": true,
441
- "license": "MIT",
442
- "optional": true,
443
- "os": [
444
- "darwin"
445
- ],
446
- "engines": {
447
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
448
- }
449
- },
450
- "node_modules/nanoid": {
451
- "version": "3.3.11",
452
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
453
- "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
454
- "dev": true,
455
- "funding": [
456
- {
457
- "type": "github",
458
- "url": "https://github.com/sponsors/ai"
459
- }
460
- ],
461
- "license": "MIT",
462
- "bin": {
463
- "nanoid": "bin/nanoid.cjs"
464
- },
465
- "engines": {
466
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
467
- }
468
- },
469
- "node_modules/picocolors": {
470
- "version": "1.1.1",
471
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
472
- "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
473
- "dev": true,
474
- "license": "ISC"
475
- },
476
- "node_modules/postcss": {
477
- "version": "8.5.6",
478
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
479
- "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
480
- "dev": true,
481
- "funding": [
482
- {
483
- "type": "opencollective",
484
- "url": "https://opencollective.com/postcss/"
485
- },
486
- {
487
- "type": "tidelift",
488
- "url": "https://tidelift.com/funding/github/npm/postcss"
489
- },
490
- {
491
- "type": "github",
492
- "url": "https://github.com/sponsors/ai"
493
- }
494
- ],
495
- "license": "MIT",
496
- "dependencies": {
497
- "nanoid": "^3.3.11",
498
- "picocolors": "^1.1.1",
499
- "source-map-js": "^1.2.1"
500
- },
501
- "engines": {
502
- "node": "^10 || ^12 || >=14"
503
- }
504
- },
505
- "node_modules/rollup": {
506
- "version": "3.29.5",
507
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.5.tgz",
508
- "integrity": "sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==",
509
- "dev": true,
510
- "license": "MIT",
511
- "bin": {
512
- "rollup": "dist/bin/rollup"
513
- },
514
- "engines": {
515
- "node": ">=14.18.0",
516
- "npm": ">=8.0.0"
517
- },
518
- "optionalDependencies": {
519
- "fsevents": "~2.3.2"
520
- }
521
- },
522
- "node_modules/source-map-js": {
523
- "version": "1.2.1",
524
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
525
- "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
526
- "dev": true,
527
- "license": "BSD-3-Clause",
528
- "engines": {
529
- "node": ">=0.10.0"
530
- }
531
- },
532
- "node_modules/vite": {
533
- "version": "4.5.14",
534
- "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.14.tgz",
535
- "integrity": "sha512-+v57oAaoYNnO3hIu5Z/tJRZjq5aHM2zDve9YZ8HngVHbhk66RStobhb1sqPMIPEleV6cNKYK4eGrAbE9Ulbl2g==",
536
- "dev": true,
537
- "license": "MIT",
538
- "dependencies": {
539
- "esbuild": "^0.18.10",
540
- "postcss": "^8.4.27",
541
- "rollup": "^3.27.1"
542
- },
543
- "bin": {
544
- "vite": "bin/vite.js"
545
- },
546
- "engines": {
547
- "node": "^14.18.0 || >=16.0.0"
548
- },
549
- "funding": {
550
- "url": "https://github.com/vitejs/vite?sponsor=1"
551
- },
552
- "optionalDependencies": {
553
- "fsevents": "~2.3.2"
554
- },
555
- "peerDependencies": {
556
- "@types/node": ">= 14",
557
- "less": "*",
558
- "lightningcss": "^1.21.0",
559
- "sass": "*",
560
- "stylus": "*",
561
- "sugarss": "*",
562
- "terser": "^5.4.0"
563
- },
564
- "peerDependenciesMeta": {
565
- "@types/node": {
566
- "optional": true
567
- },
568
- "less": {
569
- "optional": true
570
- },
571
- "lightningcss": {
572
- "optional": true
573
- },
574
- "sass": {
575
- "optional": true
576
- },
577
- "stylus": {
578
- "optional": true
579
- },
580
- "sugarss": {
581
- "optional": true
582
- },
583
- "terser": {
584
- "optional": true
585
- }
586
- }
587
- }
588
- }
589
- }