create-leo-app 0.9.3 → 0.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template-extension/package.json +1 -1
- package/template-nextjs-ts/node_modules/@types/node/LICENSE +21 -0
- package/template-nextjs-ts/node_modules/@types/node/README.md +15 -0
- package/template-nextjs-ts/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/template-nextjs-ts/node_modules/@types/node/assert.d.ts +1054 -0
- package/template-nextjs-ts/node_modules/@types/node/async_hooks.d.ts +603 -0
- package/template-nextjs-ts/node_modules/@types/node/buffer.buffer.d.ts +463 -0
- package/template-nextjs-ts/node_modules/@types/node/buffer.d.ts +1928 -0
- package/template-nextjs-ts/node_modules/@types/node/child_process.d.ts +1549 -0
- package/template-nextjs-ts/node_modules/@types/node/cluster.d.ts +579 -0
- package/template-nextjs-ts/node_modules/@types/node/compatibility/disposable.d.ts +14 -0
- package/template-nextjs-ts/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/template-nextjs-ts/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- package/template-nextjs-ts/node_modules/@types/node/compatibility/iterators.d.ts +20 -0
- package/template-nextjs-ts/node_modules/@types/node/console.d.ts +452 -0
- package/template-nextjs-ts/node_modules/@types/node/constants.d.ts +21 -0
- package/template-nextjs-ts/node_modules/@types/node/crypto.d.ts +4509 -0
- package/template-nextjs-ts/node_modules/@types/node/dgram.d.ts +599 -0
- package/template-nextjs-ts/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
- package/template-nextjs-ts/node_modules/@types/node/dns/promises.d.ts +502 -0
- package/template-nextjs-ts/node_modules/@types/node/dns.d.ts +919 -0
- package/template-nextjs-ts/node_modules/@types/node/dom-events.d.ts +99 -0
- package/template-nextjs-ts/node_modules/@types/node/domain.d.ts +170 -0
- package/template-nextjs-ts/node_modules/@types/node/events.d.ts +930 -0
- package/template-nextjs-ts/node_modules/@types/node/fs/promises.d.ts +1273 -0
- package/template-nextjs-ts/node_modules/@types/node/fs.d.ts +4437 -0
- package/template-nextjs-ts/node_modules/@types/node/globals.d.ts +364 -0
- package/template-nextjs-ts/node_modules/@types/node/globals.typedarray.d.ts +21 -0
- package/template-nextjs-ts/node_modules/@types/node/http.d.ts +2061 -0
- package/template-nextjs-ts/node_modules/@types/node/http2.d.ts +2625 -0
- package/template-nextjs-ts/node_modules/@types/node/https.d.ts +545 -0
- package/template-nextjs-ts/node_modules/@types/node/index.d.ts +92 -0
- package/template-nextjs-ts/node_modules/@types/node/inspector.d.ts +4002 -0
- package/template-nextjs-ts/node_modules/@types/node/module.d.ts +867 -0
- package/template-nextjs-ts/node_modules/@types/node/net.d.ts +1035 -0
- package/template-nextjs-ts/node_modules/@types/node/os.d.ts +495 -0
- package/template-nextjs-ts/node_modules/@types/node/package.json +225 -0
- package/template-nextjs-ts/node_modules/@types/node/path.d.ts +200 -0
- package/template-nextjs-ts/node_modules/@types/node/perf_hooks.d.ts +970 -0
- package/template-nextjs-ts/node_modules/@types/node/process.d.ts +2061 -0
- package/template-nextjs-ts/node_modules/@types/node/punycode.d.ts +117 -0
- package/template-nextjs-ts/node_modules/@types/node/querystring.d.ts +152 -0
- package/template-nextjs-ts/node_modules/@types/node/readline/promises.d.ts +162 -0
- package/template-nextjs-ts/node_modules/@types/node/readline.d.ts +594 -0
- package/template-nextjs-ts/node_modules/@types/node/repl.d.ts +428 -0
- package/template-nextjs-ts/node_modules/@types/node/sea.d.ts +153 -0
- package/template-nextjs-ts/node_modules/@types/node/sqlite.d.ts +680 -0
- package/template-nextjs-ts/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/template-nextjs-ts/node_modules/@types/node/stream/promises.d.ts +90 -0
- package/template-nextjs-ts/node_modules/@types/node/stream/web.d.ts +618 -0
- package/template-nextjs-ts/node_modules/@types/node/stream.d.ts +1668 -0
- package/template-nextjs-ts/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/template-nextjs-ts/node_modules/@types/node/test.d.ts +2175 -0
- package/template-nextjs-ts/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/template-nextjs-ts/node_modules/@types/node/timers.d.ts +287 -0
- package/template-nextjs-ts/node_modules/@types/node/tls.d.ts +1259 -0
- package/template-nextjs-ts/node_modules/@types/node/trace_events.d.ts +197 -0
- package/template-nextjs-ts/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +460 -0
- package/template-nextjs-ts/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +19 -0
- package/template-nextjs-ts/node_modules/@types/node/ts5.6/index.d.ts +92 -0
- package/template-nextjs-ts/node_modules/@types/node/tty.d.ts +208 -0
- package/template-nextjs-ts/node_modules/@types/node/url.d.ts +972 -0
- package/template-nextjs-ts/node_modules/@types/node/util.d.ts +2596 -0
- package/template-nextjs-ts/node_modules/@types/node/v8.d.ts +922 -0
- package/template-nextjs-ts/node_modules/@types/node/vm.d.ts +1029 -0
- package/template-nextjs-ts/node_modules/@types/node/wasi.d.ts +181 -0
- package/template-nextjs-ts/node_modules/@types/node/worker_threads.d.ts +769 -0
- package/template-nextjs-ts/node_modules/@types/node/zlib.d.ts +670 -0
- package/template-nextjs-ts/node_modules/undici-types/LICENSE +21 -0
- package/template-nextjs-ts/node_modules/undici-types/README.md +6 -0
- package/template-nextjs-ts/node_modules/undici-types/agent.d.ts +31 -0
- package/template-nextjs-ts/node_modules/undici-types/api.d.ts +43 -0
- package/template-nextjs-ts/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/template-nextjs-ts/node_modules/undici-types/cache.d.ts +36 -0
- package/template-nextjs-ts/node_modules/undici-types/client.d.ts +108 -0
- package/template-nextjs-ts/node_modules/undici-types/connector.d.ts +34 -0
- package/template-nextjs-ts/node_modules/undici-types/content-type.d.ts +21 -0
- package/template-nextjs-ts/node_modules/undici-types/cookies.d.ts +28 -0
- package/template-nextjs-ts/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/template-nextjs-ts/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/template-nextjs-ts/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/template-nextjs-ts/node_modules/undici-types/errors.d.ts +149 -0
- package/template-nextjs-ts/node_modules/undici-types/eventsource.d.ts +61 -0
- package/template-nextjs-ts/node_modules/undici-types/fetch.d.ts +209 -0
- package/template-nextjs-ts/node_modules/undici-types/file.d.ts +39 -0
- package/template-nextjs-ts/node_modules/undici-types/filereader.d.ts +54 -0
- package/template-nextjs-ts/node_modules/undici-types/formdata.d.ts +108 -0
- package/template-nextjs-ts/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/template-nextjs-ts/node_modules/undici-types/global-origin.d.ts +7 -0
- package/template-nextjs-ts/node_modules/undici-types/handlers.d.ts +15 -0
- package/template-nextjs-ts/node_modules/undici-types/header.d.ts +4 -0
- package/template-nextjs-ts/node_modules/undici-types/index.d.ts +71 -0
- package/template-nextjs-ts/node_modules/undici-types/interceptors.d.ts +17 -0
- package/template-nextjs-ts/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/template-nextjs-ts/node_modules/undici-types/mock-client.d.ts +25 -0
- package/template-nextjs-ts/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/template-nextjs-ts/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/template-nextjs-ts/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/template-nextjs-ts/node_modules/undici-types/package.json +55 -0
- package/template-nextjs-ts/node_modules/undici-types/patch.d.ts +33 -0
- package/template-nextjs-ts/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/template-nextjs-ts/node_modules/undici-types/pool.d.ts +39 -0
- package/template-nextjs-ts/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/template-nextjs-ts/node_modules/undici-types/readable.d.ts +65 -0
- package/template-nextjs-ts/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/template-nextjs-ts/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/template-nextjs-ts/node_modules/undici-types/util.d.ts +18 -0
- package/template-nextjs-ts/node_modules/undici-types/webidl.d.ts +228 -0
- package/template-nextjs-ts/node_modules/undici-types/websocket.d.ts +150 -0
- package/template-nextjs-ts/package.json +1 -1
- package/template-node/index.js +1 -1
- package/template-node/package.json +1 -1
- package/template-node-ts/package.json +1 -1
- package/template-node-ts/src/index.ts +1 -1
- package/template-offline-public-transaction-ts/package.json +1 -1
- package/template-react-leo/package.json +1 -1
- package/template-react-managed-worker/package.json +1 -1
- package/template-react-ts/node_modules/@types/node/LICENSE +21 -0
- package/template-react-ts/node_modules/@types/node/README.md +15 -0
- package/template-react-ts/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/template-react-ts/node_modules/@types/node/assert.d.ts +1054 -0
- package/template-react-ts/node_modules/@types/node/async_hooks.d.ts +603 -0
- package/template-react-ts/node_modules/@types/node/buffer.buffer.d.ts +463 -0
- package/template-react-ts/node_modules/@types/node/buffer.d.ts +1928 -0
- package/template-react-ts/node_modules/@types/node/child_process.d.ts +1549 -0
- package/template-react-ts/node_modules/@types/node/cluster.d.ts +579 -0
- package/template-react-ts/node_modules/@types/node/compatibility/disposable.d.ts +14 -0
- package/template-react-ts/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/template-react-ts/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- package/template-react-ts/node_modules/@types/node/compatibility/iterators.d.ts +20 -0
- package/template-react-ts/node_modules/@types/node/console.d.ts +452 -0
- package/template-react-ts/node_modules/@types/node/constants.d.ts +21 -0
- package/template-react-ts/node_modules/@types/node/crypto.d.ts +4509 -0
- package/template-react-ts/node_modules/@types/node/dgram.d.ts +599 -0
- package/template-react-ts/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
- package/template-react-ts/node_modules/@types/node/dns/promises.d.ts +502 -0
- package/template-react-ts/node_modules/@types/node/dns.d.ts +919 -0
- package/template-react-ts/node_modules/@types/node/dom-events.d.ts +99 -0
- package/template-react-ts/node_modules/@types/node/domain.d.ts +170 -0
- package/template-react-ts/node_modules/@types/node/events.d.ts +930 -0
- package/template-react-ts/node_modules/@types/node/fs/promises.d.ts +1273 -0
- package/template-react-ts/node_modules/@types/node/fs.d.ts +4437 -0
- package/template-react-ts/node_modules/@types/node/globals.d.ts +364 -0
- package/template-react-ts/node_modules/@types/node/globals.typedarray.d.ts +21 -0
- package/template-react-ts/node_modules/@types/node/http.d.ts +2061 -0
- package/template-react-ts/node_modules/@types/node/http2.d.ts +2625 -0
- package/template-react-ts/node_modules/@types/node/https.d.ts +545 -0
- package/template-react-ts/node_modules/@types/node/index.d.ts +92 -0
- package/template-react-ts/node_modules/@types/node/inspector.d.ts +4002 -0
- package/template-react-ts/node_modules/@types/node/module.d.ts +867 -0
- package/template-react-ts/node_modules/@types/node/net.d.ts +1035 -0
- package/template-react-ts/node_modules/@types/node/os.d.ts +495 -0
- package/template-react-ts/node_modules/@types/node/package.json +225 -0
- package/template-react-ts/node_modules/@types/node/path.d.ts +200 -0
- package/template-react-ts/node_modules/@types/node/perf_hooks.d.ts +970 -0
- package/template-react-ts/node_modules/@types/node/process.d.ts +2061 -0
- package/template-react-ts/node_modules/@types/node/punycode.d.ts +117 -0
- package/template-react-ts/node_modules/@types/node/querystring.d.ts +152 -0
- package/template-react-ts/node_modules/@types/node/readline/promises.d.ts +162 -0
- package/template-react-ts/node_modules/@types/node/readline.d.ts +594 -0
- package/template-react-ts/node_modules/@types/node/repl.d.ts +428 -0
- package/template-react-ts/node_modules/@types/node/sea.d.ts +153 -0
- package/template-react-ts/node_modules/@types/node/sqlite.d.ts +680 -0
- package/template-react-ts/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/template-react-ts/node_modules/@types/node/stream/promises.d.ts +90 -0
- package/template-react-ts/node_modules/@types/node/stream/web.d.ts +618 -0
- package/template-react-ts/node_modules/@types/node/stream.d.ts +1668 -0
- package/template-react-ts/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/template-react-ts/node_modules/@types/node/test.d.ts +2175 -0
- package/template-react-ts/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/template-react-ts/node_modules/@types/node/timers.d.ts +287 -0
- package/template-react-ts/node_modules/@types/node/tls.d.ts +1259 -0
- package/template-react-ts/node_modules/@types/node/trace_events.d.ts +197 -0
- package/template-react-ts/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +460 -0
- package/template-react-ts/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +19 -0
- package/template-react-ts/node_modules/@types/node/ts5.6/index.d.ts +92 -0
- package/template-react-ts/node_modules/@types/node/tty.d.ts +208 -0
- package/template-react-ts/node_modules/@types/node/url.d.ts +972 -0
- package/template-react-ts/node_modules/@types/node/util.d.ts +2596 -0
- package/template-react-ts/node_modules/@types/node/v8.d.ts +922 -0
- package/template-react-ts/node_modules/@types/node/vm.d.ts +1029 -0
- package/template-react-ts/node_modules/@types/node/wasi.d.ts +181 -0
- package/template-react-ts/node_modules/@types/node/worker_threads.d.ts +769 -0
- package/template-react-ts/node_modules/@types/node/zlib.d.ts +670 -0
- package/template-react-ts/node_modules/undici-types/LICENSE +21 -0
- package/template-react-ts/node_modules/undici-types/README.md +6 -0
- package/template-react-ts/node_modules/undici-types/agent.d.ts +31 -0
- package/template-react-ts/node_modules/undici-types/api.d.ts +43 -0
- package/template-react-ts/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/template-react-ts/node_modules/undici-types/cache.d.ts +36 -0
- package/template-react-ts/node_modules/undici-types/client.d.ts +108 -0
- package/template-react-ts/node_modules/undici-types/connector.d.ts +34 -0
- package/template-react-ts/node_modules/undici-types/content-type.d.ts +21 -0
- package/template-react-ts/node_modules/undici-types/cookies.d.ts +28 -0
- package/template-react-ts/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/template-react-ts/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/template-react-ts/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/template-react-ts/node_modules/undici-types/errors.d.ts +149 -0
- package/template-react-ts/node_modules/undici-types/eventsource.d.ts +61 -0
- package/template-react-ts/node_modules/undici-types/fetch.d.ts +209 -0
- package/template-react-ts/node_modules/undici-types/file.d.ts +39 -0
- package/template-react-ts/node_modules/undici-types/filereader.d.ts +54 -0
- package/template-react-ts/node_modules/undici-types/formdata.d.ts +108 -0
- package/template-react-ts/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/template-react-ts/node_modules/undici-types/global-origin.d.ts +7 -0
- package/template-react-ts/node_modules/undici-types/handlers.d.ts +15 -0
- package/template-react-ts/node_modules/undici-types/header.d.ts +4 -0
- package/template-react-ts/node_modules/undici-types/index.d.ts +71 -0
- package/template-react-ts/node_modules/undici-types/interceptors.d.ts +17 -0
- package/template-react-ts/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/template-react-ts/node_modules/undici-types/mock-client.d.ts +25 -0
- package/template-react-ts/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/template-react-ts/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/template-react-ts/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/template-react-ts/node_modules/undici-types/package.json +55 -0
- package/template-react-ts/node_modules/undici-types/patch.d.ts +33 -0
- package/template-react-ts/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/template-react-ts/node_modules/undici-types/pool.d.ts +39 -0
- package/template-react-ts/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/template-react-ts/node_modules/undici-types/readable.d.ts +65 -0
- package/template-react-ts/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/template-react-ts/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/template-react-ts/node_modules/undici-types/util.d.ts +18 -0
- package/template-react-ts/node_modules/undici-types/webidl.d.ts +228 -0
- package/template-react-ts/node_modules/undici-types/websocket.d.ts +150 -0
- package/template-react-ts/package.json +1 -1
- package/template-vanilla/package.json +1 -1
- package/template-offline-public-transaction-ts/dist/index.js +0 -195
- package/template-offline-public-transaction-ts/dist/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Microsoft Corporation.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Installation
|
|
2
|
+
> `npm install --save @types/node`
|
|
3
|
+
|
|
4
|
+
# Summary
|
|
5
|
+
This package contains type definitions for node (https://nodejs.org/).
|
|
6
|
+
|
|
7
|
+
# Details
|
|
8
|
+
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v22.
|
|
9
|
+
|
|
10
|
+
### Additional Details
|
|
11
|
+
* Last updated: Tue, 01 Jul 2025 20:02:28 GMT
|
|
12
|
+
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
|
+
|
|
14
|
+
# Credits
|
|
15
|
+
These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [Alberto Schiabel](https://github.com/jkomyno), [Alvis HT Tang](https://github.com/alvis), [Andrew Makarov](https://github.com/r3nya), [Benjamin Toueg](https://github.com/btoueg), [Chigozirim C.](https://github.com/smac89), [David Junger](https://github.com/touffy), [Deividas Bakanas](https://github.com/DeividasBakanas), [Eugene Y. Q. Shen](https://github.com/eyqs), [Hannes Magnusson](https://github.com/Hannes-Magnusson-CK), [Huw](https://github.com/hoo29), [Kelvin Jin](https://github.com/kjin), [Klaus Meinhardt](https://github.com/ajafff), [Lishude](https://github.com/islishude), [Mariusz Wiktorczyk](https://github.com/mwiktorczyk), [Mohsen Azimi](https://github.com/mohsen1), [Nikita Galkin](https://github.com/galkin), [Parambir Singh](https://github.com/parambirs), [Sebastian Silbermann](https://github.com/eps1lon), [Thomas den Hollander](https://github.com/ThomasdenH), [Wilco Bakker](https://github.com/WilcoBakker), [wwwy3y3](https://github.com/wwwy3y3), [Samuel Ainsworth](https://github.com/samuela), [Kyle Uehlein](https://github.com/kuehlein), [Thanik Bhongbhibhat](https://github.com/bhongy), [Marcin Kopacz](https://github.com/chyzwar), [Trivikram Kamat](https://github.com/trivikr), [Junxiao Shi](https://github.com/yoursunny), [Ilia Baryshnikov](https://github.com/qwelias), [ExE Boss](https://github.com/ExE-Boss), [Piotr Błażejewicz](https://github.com/peterblazejewicz), [Anna Henningsen](https://github.com/addaleax), [Victor Perin](https://github.com/victorperin), [NodeJS Contributors](https://github.com/NodeJS), [Linus Unnebäck](https://github.com/LinusU), [wafuwafu13](https://github.com/wafuwafu13), [Matteo Collina](https://github.com/mcollina), [Dmitry Semigradsky](https://github.com/Semigradsky), and [René](https://github.com/Renegade334).
|