auto-commit for 708bb760-a338-44b7-b0f2-47e27405e3af

This commit is contained in:
emergent-agent-e1
2025-11-08 08:58:18 +00:00
parent 3fbaccbb47
commit b54a3f8321
284 changed files with 284 additions and 0 deletions
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function(global, require, _importDefaultUnused, _importAllUnused, module, exports, _dependencyMapUnused) {\n module.exports = {\n \"name\": \"react-native-url-polyfill\",\n \"version\": \"2.0.0\",\n \"description\": \"A lightweight and trustworthy URL polyfill for React Native\",\n \"keywords\": [\n \"URL\",\n \"URLSearchParams\",\n \"polyfill\",\n \"react native\",\n \"whatwg-url\"\n ],\n \"bugs\": {\n \"url\": \"https://github.com/charpeni/react-native-url-polyfill/issues\"\n },\n \"homepage\": \"https://github.com/charpeni/react-native-url-polyfill\",\n \"readme\": \"https://github.com/charpeni/react-native-url-polyfill#readme\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/charpeni/react-native-url-polyfill.git\"\n },\n \"main\": \"index.js\",\n \"types\": \"index.d.ts\",\n \"scripts\": {\n \"test\": \"jest\",\n \"lint\": \"eslint .\",\n \"prepare\": \"husky install\",\n \"bundle-size\": \"node scripts/bundle-size\"\n },\n \"author\": \"Nicolas Charpentier <nicolas.charpentier079@gmail.com>\",\n \"license\": \"MIT\",\n \"dependencies\": {\n \"whatwg-url-without-unicode\": \"8.0.0-3\"\n },\n \"devDependencies\": {\n \"@react-native-community/eslint-config\": \"3.2.0\",\n \"detox\": \"20.9.1\",\n \"eslint\": \"8.44.0\",\n \"eslint-plugin-prettier\": \"4.2.1\",\n \"husky\": \"8.0.3\",\n \"jest\": \"29.5.0\",\n \"lint-staged\": \"13.2.3\",\n \"metro-react-native-babel-preset\": \"0.76.7\",\n \"nanoid\": \"3.3.6\",\n \"prettier\": \"2.8.8\",\n \"react\": \"18.2.0\",\n \"react-native\": \"0.72.1\",\n \"react-native-bundle-scale\": \"1.1.0\",\n \"typescript\": \"5.1.6\"\n },\n \"peerDependencies\": {\n \"react-native\": \"*\"\n },\n \"jest\": {\n \"preset\": \"react-native\",\n \"testPathIgnorePatterns\": [\n \"/node_modules/\",\n \"./platforms/\"\n ]\n },\n \"lint-staged\": {\n \"*.js\": [\n \"eslint --fix\"\n ]\n }\n}\n;\n});","lineCount":68,"map":[[68,3]],"functionMap":null},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n // Copyright (C) 2016 Dmitry Chestnykh\n // MIT License. See LICENSE file for details.\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.BrowserRandomSource = void 0;\n const QUOTA = 65536;\n class BrowserRandomSource {\n constructor() {\n this.isAvailable = false;\n this.isInstantiated = false;\n const browserCrypto = typeof self !== 'undefined' ? self.crypto || self.msCrypto // IE11 has msCrypto\n : null;\n if (browserCrypto && browserCrypto.getRandomValues !== undefined) {\n this._crypto = browserCrypto;\n this.isAvailable = true;\n this.isInstantiated = true;\n }\n }\n randomBytes(length) {\n if (!this.isAvailable || !this._crypto) {\n throw new Error(\"Browser random byte generator is not available.\");\n }\n const out = new Uint8Array(length);\n for (let i = 0; i < out.length; i += QUOTA) {\n this._crypto.getRandomValues(out.subarray(i, i + Math.min(out.length - i, QUOTA)));\n }\n return out;\n }\n }\n exports.BrowserRandomSource = BrowserRandomSource;\n});","lineCount":35,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0],[5,2,3,0],[6,2,4,0,"Object"],[6,8,4,6],[6,9,4,7,"defineProperty"],[6,23,4,21],[6,24,4,22,"exports"],[6,31,4,29],[6,33,4,31],[6,45,4,43],[6,47,4,45],[7,4,4,47,"value"],[7,9,4,52],[7,11,4,54],[8,2,4,59],[8,3,4,60],[8,4,4,61],[9,2,5,0,"exports"],[9,9,5,7],[9,10,5,8,"BrowserRandomSource"],[9,29,5,27],[9,32,5,30],[9,37,5,35],[9,38,5,36],[10,2,6,0],[10,8,6,6,"QUOTA"],[10,13,6,11],[10,16,6,14],[10,21,6,19],[11,2,7,0],[11,8,7,6,"BrowserRandomSource"],[11,27,7,25],[11,28,7,26],[12,4,8,4,"constructor"],[12,15,8,15,"constructor"],[12,16,8,15],[12,18,8,18],[13,6,9,8],[13,10,9,12],[13,11,9,13,"isAvailable"],[13,22,9,24],[13,25,9,27],[13,30,9,32],[14,6,10,8],[14,10,10,12],[14,11,10,13,"isInstantiated"],[14,25,10,27],[14,28,10,30],[14,33,10,35],[15,6,11,8],[15,12,11,14,"browserCrypto"],[15,25,11,27],[15,28,11,30],[15,35,11,37,"self"],[15,39,11,41],[15,44,11,46],[15,55,11,57],[15,58,12,15,"self"],[15,62,12,19],[15,63,12,20,"crypto"],[15,69,12,26],[15,73,12,30,"self"],[15,77,12,34],[15,78,12,35,"msCrypto"],[15,86,12,43],[15,87,12,45],[16,6,12,45],[16,8,13,14],[16,12,13,18],[17,6,14,8],[17,10,14,12,"browserCrypto"],[17,23,14,25],[17,27,14,29,"browserCrypto"],[17,40,14,42],[17,41,14,43,"getRandomValues"],[17,56,14,58],[17,61,14,63,"undefined"],[17,70,14,72],[17,72,14,74],[18,8,15,12],[18,12,15,16],[18,13,15,17,"_crypto"],[18,20,15,24],[18,23,15,27,"browserCrypto"],[18,36,15,40],[19,8,16,12],[19,12,16,16],[19,13,16,17,"isAvailable"],[19,24,16,28],[19,27,16,31],[19,31,16,35],[20,8,17,12],[20,12,17,16],[20,13,17,17,"isInstantiated"],[20,27,17,31],[20,30,17,34],[20,34,17,38],[21,6,18,8],[22,4,19,4],[23,4,20,4,"randomBytes"],[23,15,20,15,"randomBytes"],[23,16,20,16,"length"],[23,22,20,22],[23,24,20,24],[24,6,21,8],[24,10,21,12],[24,11,21,13],[24,15,21,17],[24,16,21,18,"isAvailable"],[24,27,21,29],[24,31,21,33],[24,32,21,34],[24,36,21,38],[24,37,21,39,"_crypto"],[24,44,21,46],[24,46,21,48],[25,8,22,12],[25,14,22,18],[25,18,22,22,"Error"],[25,23,22,27],[25,24,22,28],[25,73,22,77],[25,74,22,78],[26,6,23,8],[27,6,24,8],[27,12,24,14,"out"],[27,15,24,17],[27,18,24,20],[27,22,24,24,"Uint8Array"],[27,32,24,34],[27,33,24,35,"length"],[27,39,24,41],[27,40,24,42],[28,6,25,8],[28,11,25,13],[28,15,25,17,"i"],[28,16,25,18],[28,19,25,21],[28,20,25,22],[28,22,25,24,"i"],[28,23,25,25],[28,26,25,28,"out"],[28,29,25,31],[28,30,25,32,"length"],[28,36,25,38],[28,38,25,40,"i"],[28,39,25,41],[28,43,25,45,"QUOTA"],[28,48,25,50],[28,50,25,52],[29,8,26,12],[29,12,26,16],[29,13,26,17,"_crypto"],[29,20,26,24],[29,21,26,25,"getRandomValues"],[29,36,26,40],[29,37,26,41,"out"],[29,40,26,44],[29,41,26,45,"subarray"],[29,49,26,53],[29,50,26,54,"i"],[29,51,26,55],[29,53,26,57,"i"],[29,54,26,58],[29,57,26,61,"Math"],[29,61,26,65],[29,62,26,66,"min"],[29,65,26,69],[29,66,26,70,"out"],[29,69,26,73],[29,70,26,74,"length"],[29,76,26,80],[29,79,26,83,"i"],[29,80,26,84],[29,82,26,86,"QUOTA"],[29,87,26,91],[29,88,26,92],[29,89,26,93],[29,90,26,94],[30,6,27,8],[31,6,28,8],[31,13,28,15,"out"],[31,16,28,18],[32,4,29,4],[33,2,30,0],[34,2,31,0,"exports"],[34,9,31,7],[34,10,31,8,"BrowserRandomSource"],[34,29,31,27],[34,32,31,30,"BrowserRandomSource"],[34,51,31,49],[35,0,31,50],[35,3]],"functionMap":{"names":["<global>","BrowserRandomSource","BrowserRandomSource#constructor","BrowserRandomSource#randomBytes"],"mappings":"AAA;ACM;ICC;KDW;IEC;KFS;CDC"},"hasCjsExports":true},"type":"js/module"}]}