├── .github └── workflows │ └── semgrep.yml ├── .gitignore ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── index.py ├── package-lock.json ├── package.json ├── webpack.config.js └── wrangler.toml /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- 1 | 2 | on: 3 | pull_request: {} 4 | workflow_dispatch: {} 5 | push: 6 | branches: 7 | - main 8 | - master 9 | schedule: 10 | - cron: '0 0 * * *' 11 | name: Semgrep config 12 | jobs: 13 | semgrep: 14 | name: semgrep/ci 15 | runs-on: ubuntu-20.04 16 | env: 17 | SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }} 18 | SEMGREP_URL: https://cloudflare.semgrep.dev 19 | SEMGREP_APP_URL: https://cloudflare.semgrep.dev 20 | SEMGREP_VERSION_CHECK_URL: https://cloudflare.semgrep.dev/api/check-version 21 | container: 22 | image: returntocorp/semgrep 23 | steps: 24 | - uses: actions/checkout@v3 25 | - run: semgrep ci 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /dist 3 | **/*.rs.bk 4 | Cargo.lock 5 | bin/ 6 | pkg/ 7 | wasm-pack.log 8 | worker/ 9 | node_modules/ 10 | .cargo-ok 11 | /__target__ 12 | /env 13 | -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2020 Cloudflare 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Cloudflare 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. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Python hello world for Cloudflare Workers 2 | 3 | Your Python code in [index.py](https://github.com/cloudflare/python-worker-hello-world/blob/master/index.py), running on Cloudflare Workers. 4 | 5 | In addition to [Wrangler](https://github.com/cloudflare/wrangler2) and [npm](https://www.npmjs.com/get-npm), you will need to install [Transcrypt](https://www.transcrypt.org/docs/html/installation_use.html), including Python 3.7 and virtualenv. 6 | 7 | #### Wrangler 8 | 9 | - Clone repository (`git clone https://github.com/cloudflare/python-worker-hello-world`) 10 | - Run `npm install` 11 | - Update `wrangler.toml` with your project `name`, `account_id`, and `route` as required 12 | 13 | Further documentation for Wrangler can be found [here](https://developers.cloudflare.com/workers/wrangler/). 14 | 15 | #### Transcrypt 16 | 17 | Before building your project, you'll need to do one-time setup of Transcrypt. Assuming you have Python 3.7 and virtualenv installed per the linked instructions above, that setup on unix systems looks like the following (for windows see [virtualenv docs](https://virtualenv.pypa.io/en/latest/user_guide.html#activators)): 18 | 19 | ``` 20 | cd projectname 21 | 22 | virtualenv env 23 | 24 | source env/bin/activate 25 | 26 | pip install transcrypt 27 | ``` 28 | 29 | After that you can run Wrangler commands, such as `wrangler publish` to push your code to Cloudflare. If you exit virtualenv (`deactivate`) and return to the project directory later, you'll need to activate virtualenv (`source env/bin/activate`) but will not need to rerun the other installation commands. 30 | 31 | If `python3` is not Python 3.7 on your system, make sure you install it, create the virtualenv using the right version of Python, and edit webpack.config.js under `command` to specify the correct path to the Python 3.7 executable in the virtualenv directory. If you are using Windows, see [this workaround for an issue with transcrypt-loader paths](https://github.com/QQuick/Transcrypt/issues/624#issuecomment-507866238). 32 | 33 | For more information on how Python translates to Javascript, see the [Transcrypt docs](https://www.transcrypt.org/documentation). especially the [module mechanism](https://www.transcrypt.org/docs/html/special_facilities.html#transcrypt-s-module-mechanism) and [aliases](http://www.transcrypt.org/docs/html/special_facilities.html#pragma-alias). 34 | 35 | Because of aliases, for a KV namespace binding named `KV` you can use `KV.put` normally, but need to use `KV.js_get` instead of `KV.get`. For example, a handler using KV might look like: 36 | 37 | ``` 38 | def handleRequest(request): 39 | return KV.js_get('foo').then( 40 | lambda v: __new__(Response('Python Worker hello world! ' + v, { 41 | 'headers' : { 'content-type' : 'text/plain' } 42 | }))) 43 | ``` 44 | 45 | -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- 1 | def handleRequest(request): 2 | return __new__(Response('Python Worker hello world!', { 3 | 'headers' : { 'content-type' : 'text/plain' } 4 | })) 5 | 6 | addEventListener('fetch', (lambda event: event.respondWith(handleRequest(event.request)))) 7 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "{{ project-name }}", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@discoveryjs/json-ext": { 8 | "version": "0.5.7", 9 | "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", 10 | "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", 11 | "dev": true 12 | }, 13 | "@jridgewell/gen-mapping": { 14 | "version": "0.3.2", 15 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", 16 | "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", 17 | "dev": true, 18 | "requires": { 19 | "@jridgewell/set-array": "^1.0.1", 20 | "@jridgewell/sourcemap-codec": "^1.4.10", 21 | "@jridgewell/trace-mapping": "^0.3.9" 22 | } 23 | }, 24 | "@jridgewell/resolve-uri": { 25 | "version": "3.1.0", 26 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", 27 | "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", 28 | "dev": true 29 | }, 30 | "@jridgewell/set-array": { 31 | "version": "1.1.2", 32 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 33 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 34 | "dev": true 35 | }, 36 | "@jridgewell/source-map": { 37 | "version": "0.3.2", 38 | "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", 39 | "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", 40 | "dev": true, 41 | "requires": { 42 | "@jridgewell/gen-mapping": "^0.3.0", 43 | "@jridgewell/trace-mapping": "^0.3.9" 44 | } 45 | }, 46 | "@jridgewell/sourcemap-codec": { 47 | "version": "1.4.14", 48 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", 49 | "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", 50 | "dev": true 51 | }, 52 | "@jridgewell/trace-mapping": { 53 | "version": "0.3.17", 54 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", 55 | "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", 56 | "dev": true, 57 | "requires": { 58 | "@jridgewell/resolve-uri": "3.1.0", 59 | "@jridgewell/sourcemap-codec": "1.4.14" 60 | } 61 | }, 62 | "@types/eslint": { 63 | "version": "8.21.2", 64 | "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.21.2.tgz", 65 | "integrity": "sha512-EMpxUyystd3uZVByZap1DACsMXvb82ypQnGn89e1Y0a+LYu3JJscUd/gqhRsVFDkaD2MIiWo0MT8EfXr3DGRKw==", 66 | "dev": true, 67 | "requires": { 68 | "@types/estree": "*", 69 | "@types/json-schema": "*" 70 | } 71 | }, 72 | "@types/eslint-scope": { 73 | "version": "3.7.4", 74 | "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", 75 | "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", 76 | "dev": true, 77 | "requires": { 78 | "@types/eslint": "*", 79 | "@types/estree": "*" 80 | } 81 | }, 82 | "@types/estree": { 83 | "version": "0.0.51", 84 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", 85 | "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", 86 | "dev": true 87 | }, 88 | "@types/json-schema": { 89 | "version": "7.0.11", 90 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", 91 | "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", 92 | "dev": true 93 | }, 94 | "@types/node": { 95 | "version": "18.15.3", 96 | "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.3.tgz", 97 | "integrity": "sha512-p6ua9zBxz5otCmbpb5D3U4B5Nanw6Pk3PPyX05xnxbB/fRv71N7CPmORg7uAD5P70T0xmx1pzAx/FUfa5X+3cw==", 98 | "dev": true 99 | }, 100 | "@webassemblyjs/ast": { 101 | "version": "1.11.1", 102 | "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", 103 | "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", 104 | "dev": true, 105 | "requires": { 106 | "@webassemblyjs/helper-numbers": "1.11.1", 107 | "@webassemblyjs/helper-wasm-bytecode": "1.11.1" 108 | } 109 | }, 110 | "@webassemblyjs/floating-point-hex-parser": { 111 | "version": "1.11.1", 112 | "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", 113 | "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", 114 | "dev": true 115 | }, 116 | "@webassemblyjs/helper-api-error": { 117 | "version": "1.11.1", 118 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", 119 | "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", 120 | "dev": true 121 | }, 122 | "@webassemblyjs/helper-buffer": { 123 | "version": "1.11.1", 124 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", 125 | "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", 126 | "dev": true 127 | }, 128 | "@webassemblyjs/helper-numbers": { 129 | "version": "1.11.1", 130 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", 131 | "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", 132 | "dev": true, 133 | "requires": { 134 | "@webassemblyjs/floating-point-hex-parser": "1.11.1", 135 | "@webassemblyjs/helper-api-error": "1.11.1", 136 | "@xtuc/long": "4.2.2" 137 | } 138 | }, 139 | "@webassemblyjs/helper-wasm-bytecode": { 140 | "version": "1.11.1", 141 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", 142 | "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", 143 | "dev": true 144 | }, 145 | "@webassemblyjs/helper-wasm-section": { 146 | "version": "1.11.1", 147 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", 148 | "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", 149 | "dev": true, 150 | "requires": { 151 | "@webassemblyjs/ast": "1.11.1", 152 | "@webassemblyjs/helper-buffer": "1.11.1", 153 | "@webassemblyjs/helper-wasm-bytecode": "1.11.1", 154 | "@webassemblyjs/wasm-gen": "1.11.1" 155 | } 156 | }, 157 | "@webassemblyjs/ieee754": { 158 | "version": "1.11.1", 159 | "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", 160 | "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", 161 | "dev": true, 162 | "requires": { 163 | "@xtuc/ieee754": "^1.2.0" 164 | } 165 | }, 166 | "@webassemblyjs/leb128": { 167 | "version": "1.11.1", 168 | "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", 169 | "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", 170 | "dev": true, 171 | "requires": { 172 | "@xtuc/long": "4.2.2" 173 | } 174 | }, 175 | "@webassemblyjs/utf8": { 176 | "version": "1.11.1", 177 | "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", 178 | "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", 179 | "dev": true 180 | }, 181 | "@webassemblyjs/wasm-edit": { 182 | "version": "1.11.1", 183 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", 184 | "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", 185 | "dev": true, 186 | "requires": { 187 | "@webassemblyjs/ast": "1.11.1", 188 | "@webassemblyjs/helper-buffer": "1.11.1", 189 | "@webassemblyjs/helper-wasm-bytecode": "1.11.1", 190 | "@webassemblyjs/helper-wasm-section": "1.11.1", 191 | "@webassemblyjs/wasm-gen": "1.11.1", 192 | "@webassemblyjs/wasm-opt": "1.11.1", 193 | "@webassemblyjs/wasm-parser": "1.11.1", 194 | "@webassemblyjs/wast-printer": "1.11.1" 195 | } 196 | }, 197 | "@webassemblyjs/wasm-gen": { 198 | "version": "1.11.1", 199 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", 200 | "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", 201 | "dev": true, 202 | "requires": { 203 | "@webassemblyjs/ast": "1.11.1", 204 | "@webassemblyjs/helper-wasm-bytecode": "1.11.1", 205 | "@webassemblyjs/ieee754": "1.11.1", 206 | "@webassemblyjs/leb128": "1.11.1", 207 | "@webassemblyjs/utf8": "1.11.1" 208 | } 209 | }, 210 | "@webassemblyjs/wasm-opt": { 211 | "version": "1.11.1", 212 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", 213 | "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", 214 | "dev": true, 215 | "requires": { 216 | "@webassemblyjs/ast": "1.11.1", 217 | "@webassemblyjs/helper-buffer": "1.11.1", 218 | "@webassemblyjs/wasm-gen": "1.11.1", 219 | "@webassemblyjs/wasm-parser": "1.11.1" 220 | } 221 | }, 222 | "@webassemblyjs/wasm-parser": { 223 | "version": "1.11.1", 224 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", 225 | "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", 226 | "dev": true, 227 | "requires": { 228 | "@webassemblyjs/ast": "1.11.1", 229 | "@webassemblyjs/helper-api-error": "1.11.1", 230 | "@webassemblyjs/helper-wasm-bytecode": "1.11.1", 231 | "@webassemblyjs/ieee754": "1.11.1", 232 | "@webassemblyjs/leb128": "1.11.1", 233 | "@webassemblyjs/utf8": "1.11.1" 234 | } 235 | }, 236 | "@webassemblyjs/wast-printer": { 237 | "version": "1.11.1", 238 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", 239 | "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", 240 | "dev": true, 241 | "requires": { 242 | "@webassemblyjs/ast": "1.11.1", 243 | "@xtuc/long": "4.2.2" 244 | } 245 | }, 246 | "@webpack-cli/configtest": { 247 | "version": "1.1.1", 248 | "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.1.tgz", 249 | "integrity": "sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==", 250 | "dev": true 251 | }, 252 | "@webpack-cli/info": { 253 | "version": "1.4.1", 254 | "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.1.tgz", 255 | "integrity": "sha512-PKVGmazEq3oAo46Q63tpMr4HipI3OPfP7LiNOEJg963RMgT0rqheag28NCML0o3GIzA3DmxP1ZIAv9oTX1CUIA==", 256 | "dev": true, 257 | "requires": { 258 | "envinfo": "^7.7.3" 259 | } 260 | }, 261 | "@webpack-cli/serve": { 262 | "version": "1.6.1", 263 | "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.1.tgz", 264 | "integrity": "sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==", 265 | "dev": true 266 | }, 267 | "@xtuc/ieee754": { 268 | "version": "1.2.0", 269 | "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", 270 | "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", 271 | "dev": true 272 | }, 273 | "@xtuc/long": { 274 | "version": "4.2.2", 275 | "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", 276 | "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", 277 | "dev": true 278 | }, 279 | "acorn": { 280 | "version": "8.8.2", 281 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", 282 | "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", 283 | "dev": true 284 | }, 285 | "acorn-import-assertions": { 286 | "version": "1.8.0", 287 | "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", 288 | "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", 289 | "dev": true 290 | }, 291 | "ajv": { 292 | "version": "6.12.6", 293 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 294 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 295 | "dev": true, 296 | "requires": { 297 | "fast-deep-equal": "^3.1.1", 298 | "fast-json-stable-stringify": "^2.0.0", 299 | "json-schema-traverse": "^0.4.1", 300 | "uri-js": "^4.2.2" 301 | } 302 | }, 303 | "ajv-keywords": { 304 | "version": "3.5.2", 305 | "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", 306 | "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", 307 | "dev": true 308 | }, 309 | "big.js": { 310 | "version": "5.2.2", 311 | "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", 312 | "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", 313 | "dev": true 314 | }, 315 | "browserslist": { 316 | "version": "4.21.5", 317 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", 318 | "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", 319 | "dev": true, 320 | "requires": { 321 | "caniuse-lite": "^1.0.30001449", 322 | "electron-to-chromium": "^1.4.284", 323 | "node-releases": "^2.0.8", 324 | "update-browserslist-db": "^1.0.10" 325 | } 326 | }, 327 | "buffer-from": { 328 | "version": "1.1.2", 329 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 330 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 331 | "dev": true 332 | }, 333 | "caniuse-lite": { 334 | "version": "1.0.30001466", 335 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001466.tgz", 336 | "integrity": "sha512-ewtFBSfWjEmxUgNBSZItFSmVtvk9zkwkl1OfRZlKA8slltRN+/C/tuGVrF9styXkN36Yu3+SeJ1qkXxDEyNZ5w==", 337 | "dev": true 338 | }, 339 | "chrome-trace-event": { 340 | "version": "1.0.3", 341 | "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", 342 | "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", 343 | "dev": true 344 | }, 345 | "clone-deep": { 346 | "version": "4.0.1", 347 | "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", 348 | "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", 349 | "dev": true, 350 | "requires": { 351 | "is-plain-object": "^2.0.4", 352 | "kind-of": "^6.0.2", 353 | "shallow-clone": "^3.0.0" 354 | } 355 | }, 356 | "colorette": { 357 | "version": "2.0.16", 358 | "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz", 359 | "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==", 360 | "dev": true 361 | }, 362 | "commander": { 363 | "version": "2.20.3", 364 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", 365 | "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", 366 | "dev": true 367 | }, 368 | "cross-spawn": { 369 | "version": "7.0.3", 370 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 371 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 372 | "dev": true, 373 | "requires": { 374 | "path-key": "^3.1.0", 375 | "shebang-command": "^2.0.0", 376 | "which": "^2.0.1" 377 | } 378 | }, 379 | "electron-to-chromium": { 380 | "version": "1.4.330", 381 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.330.tgz", 382 | "integrity": "sha512-PqyefhybrVdjAJ45HaPLtuVaehiSw7C3ya0aad+rvmV53IVyXmYRk3pwIOb2TxTDTnmgQdn46NjMMaysx79/6Q==", 383 | "dev": true 384 | }, 385 | "emojis-list": { 386 | "version": "3.0.0", 387 | "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", 388 | "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", 389 | "dev": true 390 | }, 391 | "enhanced-resolve": { 392 | "version": "5.12.0", 393 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", 394 | "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", 395 | "dev": true, 396 | "requires": { 397 | "graceful-fs": "^4.2.4", 398 | "tapable": "^2.2.0" 399 | } 400 | }, 401 | "envinfo": { 402 | "version": "7.8.1", 403 | "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", 404 | "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", 405 | "dev": true 406 | }, 407 | "es-module-lexer": { 408 | "version": "0.9.3", 409 | "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", 410 | "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", 411 | "dev": true 412 | }, 413 | "escalade": { 414 | "version": "3.1.1", 415 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 416 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 417 | "dev": true 418 | }, 419 | "eslint-scope": { 420 | "version": "5.1.1", 421 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 422 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 423 | "dev": true, 424 | "requires": { 425 | "esrecurse": "^4.3.0", 426 | "estraverse": "^4.1.1" 427 | } 428 | }, 429 | "esrecurse": { 430 | "version": "4.3.0", 431 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 432 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 433 | "dev": true, 434 | "requires": { 435 | "estraverse": "^5.2.0" 436 | }, 437 | "dependencies": { 438 | "estraverse": { 439 | "version": "5.3.0", 440 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 441 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 442 | "dev": true 443 | } 444 | } 445 | }, 446 | "estraverse": { 447 | "version": "4.3.0", 448 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 449 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 450 | "dev": true 451 | }, 452 | "events": { 453 | "version": "3.3.0", 454 | "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", 455 | "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", 456 | "dev": true 457 | }, 458 | "execa": { 459 | "version": "5.1.1", 460 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 461 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 462 | "dev": true, 463 | "requires": { 464 | "cross-spawn": "^7.0.3", 465 | "get-stream": "^6.0.0", 466 | "human-signals": "^2.1.0", 467 | "is-stream": "^2.0.0", 468 | "merge-stream": "^2.0.0", 469 | "npm-run-path": "^4.0.1", 470 | "onetime": "^5.1.2", 471 | "signal-exit": "^3.0.3", 472 | "strip-final-newline": "^2.0.0" 473 | } 474 | }, 475 | "fast-deep-equal": { 476 | "version": "3.1.3", 477 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 478 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 479 | "dev": true 480 | }, 481 | "fast-json-stable-stringify": { 482 | "version": "2.1.0", 483 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 484 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 485 | "dev": true 486 | }, 487 | "fastest-levenshtein": { 488 | "version": "1.0.12", 489 | "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", 490 | "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", 491 | "dev": true 492 | }, 493 | "find-up": { 494 | "version": "4.1.0", 495 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 496 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 497 | "dev": true, 498 | "requires": { 499 | "locate-path": "^5.0.0", 500 | "path-exists": "^4.0.0" 501 | } 502 | }, 503 | "function-bind": { 504 | "version": "1.1.1", 505 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 506 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", 507 | "dev": true 508 | }, 509 | "get-stream": { 510 | "version": "6.0.1", 511 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 512 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 513 | "dev": true 514 | }, 515 | "glob-to-regexp": { 516 | "version": "0.4.1", 517 | "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", 518 | "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", 519 | "dev": true 520 | }, 521 | "graceful-fs": { 522 | "version": "4.2.10", 523 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", 524 | "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", 525 | "dev": true 526 | }, 527 | "has": { 528 | "version": "1.0.3", 529 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 530 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 531 | "dev": true, 532 | "requires": { 533 | "function-bind": "^1.1.1" 534 | } 535 | }, 536 | "has-flag": { 537 | "version": "4.0.0", 538 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 539 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 540 | "dev": true 541 | }, 542 | "human-signals": { 543 | "version": "2.1.0", 544 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 545 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 546 | "dev": true 547 | }, 548 | "import-local": { 549 | "version": "3.1.0", 550 | "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", 551 | "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", 552 | "dev": true, 553 | "requires": { 554 | "pkg-dir": "^4.2.0", 555 | "resolve-cwd": "^3.0.0" 556 | } 557 | }, 558 | "interpret": { 559 | "version": "2.2.0", 560 | "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", 561 | "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", 562 | "dev": true 563 | }, 564 | "is-core-module": { 565 | "version": "2.9.0", 566 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", 567 | "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", 568 | "dev": true, 569 | "requires": { 570 | "has": "^1.0.3" 571 | } 572 | }, 573 | "is-plain-object": { 574 | "version": "2.0.4", 575 | "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", 576 | "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", 577 | "dev": true, 578 | "requires": { 579 | "isobject": "^3.0.1" 580 | } 581 | }, 582 | "is-stream": { 583 | "version": "2.0.1", 584 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 585 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 586 | "dev": true 587 | }, 588 | "isexe": { 589 | "version": "2.0.0", 590 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 591 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", 592 | "dev": true 593 | }, 594 | "isobject": { 595 | "version": "3.0.1", 596 | "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", 597 | "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", 598 | "dev": true 599 | }, 600 | "jest-worker": { 601 | "version": "27.5.1", 602 | "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", 603 | "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", 604 | "dev": true, 605 | "requires": { 606 | "@types/node": "*", 607 | "merge-stream": "^2.0.0", 608 | "supports-color": "^8.0.0" 609 | } 610 | }, 611 | "json-parse-even-better-errors": { 612 | "version": "2.3.1", 613 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 614 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 615 | "dev": true 616 | }, 617 | "json-schema-traverse": { 618 | "version": "0.4.1", 619 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 620 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 621 | "dev": true 622 | }, 623 | "json5": { 624 | "version": "1.0.2", 625 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 626 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 627 | "dev": true, 628 | "requires": { 629 | "minimist": "^1.2.0" 630 | } 631 | }, 632 | "kind-of": { 633 | "version": "6.0.3", 634 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", 635 | "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", 636 | "dev": true 637 | }, 638 | "loader-runner": { 639 | "version": "4.3.0", 640 | "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", 641 | "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", 642 | "dev": true 643 | }, 644 | "loader-utils": { 645 | "version": "1.4.2", 646 | "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", 647 | "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", 648 | "dev": true, 649 | "requires": { 650 | "big.js": "^5.2.2", 651 | "emojis-list": "^3.0.0", 652 | "json5": "^1.0.1" 653 | } 654 | }, 655 | "locate-path": { 656 | "version": "5.0.0", 657 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 658 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 659 | "dev": true, 660 | "requires": { 661 | "p-locate": "^4.1.0" 662 | } 663 | }, 664 | "merge-stream": { 665 | "version": "2.0.0", 666 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 667 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 668 | "dev": true 669 | }, 670 | "mime-db": { 671 | "version": "1.52.0", 672 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 673 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 674 | "dev": true 675 | }, 676 | "mime-types": { 677 | "version": "2.1.35", 678 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 679 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 680 | "dev": true, 681 | "requires": { 682 | "mime-db": "1.52.0" 683 | } 684 | }, 685 | "mimic-fn": { 686 | "version": "2.1.0", 687 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 688 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 689 | "dev": true 690 | }, 691 | "minimist": { 692 | "version": "1.2.6", 693 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", 694 | "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", 695 | "dev": true 696 | }, 697 | "neo-async": { 698 | "version": "2.6.2", 699 | "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", 700 | "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", 701 | "dev": true 702 | }, 703 | "node-releases": { 704 | "version": "2.0.10", 705 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", 706 | "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", 707 | "dev": true 708 | }, 709 | "npm-run-path": { 710 | "version": "4.0.1", 711 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 712 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 713 | "dev": true, 714 | "requires": { 715 | "path-key": "^3.0.0" 716 | } 717 | }, 718 | "onetime": { 719 | "version": "5.1.2", 720 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 721 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 722 | "dev": true, 723 | "requires": { 724 | "mimic-fn": "^2.1.0" 725 | } 726 | }, 727 | "p-limit": { 728 | "version": "2.3.0", 729 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 730 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 731 | "dev": true, 732 | "requires": { 733 | "p-try": "^2.0.0" 734 | } 735 | }, 736 | "p-locate": { 737 | "version": "4.1.0", 738 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 739 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 740 | "dev": true, 741 | "requires": { 742 | "p-limit": "^2.2.0" 743 | } 744 | }, 745 | "p-try": { 746 | "version": "2.2.0", 747 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 748 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 749 | "dev": true 750 | }, 751 | "path-exists": { 752 | "version": "4.0.0", 753 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 754 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 755 | "dev": true 756 | }, 757 | "path-key": { 758 | "version": "3.1.1", 759 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 760 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 761 | "dev": true 762 | }, 763 | "path-parse": { 764 | "version": "1.0.7", 765 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 766 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 767 | "dev": true 768 | }, 769 | "picocolors": { 770 | "version": "1.0.0", 771 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 772 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", 773 | "dev": true 774 | }, 775 | "pkg-dir": { 776 | "version": "4.2.0", 777 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", 778 | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", 779 | "dev": true, 780 | "requires": { 781 | "find-up": "^4.0.0" 782 | } 783 | }, 784 | "punycode": { 785 | "version": "2.3.0", 786 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", 787 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", 788 | "dev": true 789 | }, 790 | "randombytes": { 791 | "version": "2.1.0", 792 | "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", 793 | "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", 794 | "dev": true, 795 | "requires": { 796 | "safe-buffer": "^5.1.0" 797 | } 798 | }, 799 | "rechoir": { 800 | "version": "0.7.1", 801 | "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", 802 | "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", 803 | "dev": true, 804 | "requires": { 805 | "resolve": "^1.9.0" 806 | } 807 | }, 808 | "resolve": { 809 | "version": "1.22.0", 810 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", 811 | "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", 812 | "dev": true, 813 | "requires": { 814 | "is-core-module": "^2.8.1", 815 | "path-parse": "^1.0.7", 816 | "supports-preserve-symlinks-flag": "^1.0.0" 817 | } 818 | }, 819 | "resolve-cwd": { 820 | "version": "3.0.0", 821 | "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", 822 | "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", 823 | "dev": true, 824 | "requires": { 825 | "resolve-from": "^5.0.0" 826 | } 827 | }, 828 | "resolve-from": { 829 | "version": "5.0.0", 830 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 831 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 832 | "dev": true 833 | }, 834 | "safe-buffer": { 835 | "version": "5.2.1", 836 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 837 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 838 | "dev": true 839 | }, 840 | "schema-utils": { 841 | "version": "3.1.1", 842 | "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", 843 | "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", 844 | "dev": true, 845 | "requires": { 846 | "@types/json-schema": "^7.0.8", 847 | "ajv": "^6.12.5", 848 | "ajv-keywords": "^3.5.2" 849 | } 850 | }, 851 | "serialize-javascript": { 852 | "version": "6.0.1", 853 | "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", 854 | "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", 855 | "dev": true, 856 | "requires": { 857 | "randombytes": "^2.1.0" 858 | } 859 | }, 860 | "shallow-clone": { 861 | "version": "3.0.1", 862 | "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", 863 | "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", 864 | "dev": true, 865 | "requires": { 866 | "kind-of": "^6.0.2" 867 | } 868 | }, 869 | "shebang-command": { 870 | "version": "2.0.0", 871 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 872 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 873 | "dev": true, 874 | "requires": { 875 | "shebang-regex": "^3.0.0" 876 | } 877 | }, 878 | "shebang-regex": { 879 | "version": "3.0.0", 880 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 881 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 882 | "dev": true 883 | }, 884 | "signal-exit": { 885 | "version": "3.0.7", 886 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 887 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 888 | "dev": true 889 | }, 890 | "source-map": { 891 | "version": "0.6.1", 892 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 893 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 894 | "dev": true 895 | }, 896 | "source-map-support": { 897 | "version": "0.5.21", 898 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", 899 | "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", 900 | "dev": true, 901 | "requires": { 902 | "buffer-from": "^1.0.0", 903 | "source-map": "^0.6.0" 904 | } 905 | }, 906 | "strip-final-newline": { 907 | "version": "2.0.0", 908 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 909 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 910 | "dev": true 911 | }, 912 | "supports-color": { 913 | "version": "8.1.1", 914 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 915 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 916 | "dev": true, 917 | "requires": { 918 | "has-flag": "^4.0.0" 919 | } 920 | }, 921 | "supports-preserve-symlinks-flag": { 922 | "version": "1.0.0", 923 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 924 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 925 | "dev": true 926 | }, 927 | "tapable": { 928 | "version": "2.2.1", 929 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 930 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 931 | "dev": true 932 | }, 933 | "terser": { 934 | "version": "5.16.6", 935 | "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.6.tgz", 936 | "integrity": "sha512-IBZ+ZQIA9sMaXmRZCUMDjNH0D5AQQfdn4WUjHL0+1lF4TP1IHRJbrhb6fNaXWikrYQTSkb7SLxkeXAiy1p7mbg==", 937 | "dev": true, 938 | "requires": { 939 | "@jridgewell/source-map": "^0.3.2", 940 | "acorn": "^8.5.0", 941 | "commander": "^2.20.0", 942 | "source-map-support": "~0.5.20" 943 | } 944 | }, 945 | "terser-webpack-plugin": { 946 | "version": "5.3.7", 947 | "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.7.tgz", 948 | "integrity": "sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==", 949 | "dev": true, 950 | "requires": { 951 | "@jridgewell/trace-mapping": "^0.3.17", 952 | "jest-worker": "^27.4.5", 953 | "schema-utils": "^3.1.1", 954 | "serialize-javascript": "^6.0.1", 955 | "terser": "^5.16.5" 956 | } 957 | }, 958 | "transcrypt-loader": { 959 | "version": "1.0.2", 960 | "resolved": "https://registry.npmjs.org/transcrypt-loader/-/transcrypt-loader-1.0.2.tgz", 961 | "integrity": "sha512-zyln/xMXAinx8O/d4m5VJmk5jOl1QVVyhK2m+gmphw5ruvekPDyWxWr4ojrqQdgzD/FY8Fuda9W+fHeSu0Ia3A==", 962 | "dev": true, 963 | "requires": { 964 | "loader-utils": "^1.2.3" 965 | } 966 | }, 967 | "update-browserslist-db": { 968 | "version": "1.0.10", 969 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", 970 | "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", 971 | "dev": true, 972 | "requires": { 973 | "escalade": "^3.1.1", 974 | "picocolors": "^1.0.0" 975 | } 976 | }, 977 | "uri-js": { 978 | "version": "4.4.1", 979 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 980 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 981 | "dev": true, 982 | "requires": { 983 | "punycode": "^2.1.0" 984 | } 985 | }, 986 | "watchpack": { 987 | "version": "2.4.0", 988 | "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", 989 | "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", 990 | "dev": true, 991 | "requires": { 992 | "glob-to-regexp": "^0.4.1", 993 | "graceful-fs": "^4.1.2" 994 | } 995 | }, 996 | "webpack": { 997 | "version": "5.76.0", 998 | "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.76.0.tgz", 999 | "integrity": "sha512-l5sOdYBDunyf72HW8dF23rFtWq/7Zgvt/9ftMof71E/yUb1YLOBmTgA2K4vQthB3kotMrSj609txVE0dnr2fjA==", 1000 | "dev": true, 1001 | "requires": { 1002 | "@types/eslint-scope": "^3.7.3", 1003 | "@types/estree": "^0.0.51", 1004 | "@webassemblyjs/ast": "1.11.1", 1005 | "@webassemblyjs/wasm-edit": "1.11.1", 1006 | "@webassemblyjs/wasm-parser": "1.11.1", 1007 | "acorn": "^8.7.1", 1008 | "acorn-import-assertions": "^1.7.6", 1009 | "browserslist": "^4.14.5", 1010 | "chrome-trace-event": "^1.0.2", 1011 | "enhanced-resolve": "^5.10.0", 1012 | "es-module-lexer": "^0.9.0", 1013 | "eslint-scope": "5.1.1", 1014 | "events": "^3.2.0", 1015 | "glob-to-regexp": "^0.4.1", 1016 | "graceful-fs": "^4.2.9", 1017 | "json-parse-even-better-errors": "^2.3.1", 1018 | "loader-runner": "^4.2.0", 1019 | "mime-types": "^2.1.27", 1020 | "neo-async": "^2.6.2", 1021 | "schema-utils": "^3.1.0", 1022 | "tapable": "^2.1.1", 1023 | "terser-webpack-plugin": "^5.1.3", 1024 | "watchpack": "^2.4.0", 1025 | "webpack-sources": "^3.2.3" 1026 | } 1027 | }, 1028 | "webpack-cli": { 1029 | "version": "4.9.2", 1030 | "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.2.tgz", 1031 | "integrity": "sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==", 1032 | "dev": true, 1033 | "requires": { 1034 | "@discoveryjs/json-ext": "^0.5.0", 1035 | "@webpack-cli/configtest": "^1.1.1", 1036 | "@webpack-cli/info": "^1.4.1", 1037 | "@webpack-cli/serve": "^1.6.1", 1038 | "colorette": "^2.0.14", 1039 | "commander": "^7.0.0", 1040 | "execa": "^5.0.0", 1041 | "fastest-levenshtein": "^1.0.12", 1042 | "import-local": "^3.0.2", 1043 | "interpret": "^2.2.0", 1044 | "rechoir": "^0.7.0", 1045 | "webpack-merge": "^5.7.3" 1046 | }, 1047 | "dependencies": { 1048 | "commander": { 1049 | "version": "7.2.0", 1050 | "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", 1051 | "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", 1052 | "dev": true 1053 | } 1054 | } 1055 | }, 1056 | "webpack-merge": { 1057 | "version": "5.8.0", 1058 | "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", 1059 | "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", 1060 | "dev": true, 1061 | "requires": { 1062 | "clone-deep": "^4.0.1", 1063 | "wildcard": "^2.0.0" 1064 | } 1065 | }, 1066 | "webpack-sources": { 1067 | "version": "3.2.3", 1068 | "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", 1069 | "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", 1070 | "dev": true 1071 | }, 1072 | "which": { 1073 | "version": "2.0.2", 1074 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 1075 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 1076 | "dev": true, 1077 | "requires": { 1078 | "isexe": "^2.0.0" 1079 | } 1080 | }, 1081 | "wildcard": { 1082 | "version": "2.0.0", 1083 | "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", 1084 | "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", 1085 | "dev": true 1086 | } 1087 | } 1088 | } 1089 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "{{ project-name }}", 3 | "version": "1.0.0", 4 | "description": "Python hello world for Cloudflare Workers", 5 | "main": "index.js", 6 | "scripts": { 7 | "build": "webpack -c webpack.config.js" 8 | }, 9 | "keywords": [], 10 | "author": "{{ authors }}", 11 | "license": "MIT", 12 | "devDependencies": { 13 | "transcrypt-loader": "^1.0.2", 14 | "webpack": "^5.76.0", 15 | "webpack-cli": "^4.9.2" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: "./index.py", 3 | mode: "production", 4 | target: "webworker", 5 | module: { 6 | rules: [ 7 | { 8 | test: /\.py$/, 9 | loader: "transcrypt-loader", 10 | options: { 11 | command: "python3 -m transcrypt" 12 | } 13 | } 14 | ] 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- 1 | name = "" 2 | account_id = "" 3 | workers_dev = true 4 | route = { pattern = "", zone_id = ""} 5 | main = "dist/main.js" 6 | compatibility_date = "2022-06-03" 7 | 8 | [build] 9 | command = "npm run build" 10 | --------------------------------------------------------------------------------