forked from ProvableHQ/sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating extension template to use the V3 manifest (ProvableHQ#802)
* Updating extension template to use the V3 manifest * Improving the optics of the justification
- Loading branch information
Showing
7 changed files
with
157 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
async function createOffscreen(path) { | ||
const offscreenUrl = chrome.runtime.getURL(path); | ||
|
||
const existingContexts = await chrome.runtime.getContexts({ | ||
contextTypes: ["OFFSCREEN_DOCUMENT"], | ||
documentUrls: [offscreenUrl] | ||
}); | ||
|
||
if (existingContexts.length > 0) { | ||
return; | ||
} | ||
|
||
await chrome.offscreen.createDocument({ | ||
url: offscreenUrl, | ||
reasons: ["WORKERS"], | ||
justification: "Top-level await and Workers cannot be used in service workers, but they are necessary to use the Aleo SDK.", | ||
}); | ||
} | ||
|
||
createOffscreen("offscreen.html"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
{ | ||
"manifest_version": 2, | ||
"manifest_version": 3, | ||
"name": "extension-starter", | ||
"version": "0.1.0", | ||
"description": "Example for using Aleo in a Chrome / Firefox extension", | ||
"background": { | ||
"page": "background.html" | ||
"service_worker": "./js/service_worker.js", | ||
"type": "module" | ||
}, | ||
"content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'" | ||
"permissions": [ | ||
"offscreen" | ||
], | ||
"content_security_policy": { | ||
"extension_pages": "default-src 'self' 'wasm-unsafe-eval'; connect-src https://s3-us-west-1.amazonaws.com/testnet3.parameters/shifted-powers-of-beta-16.usrs.d99bcb3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -150,7 +150,7 @@ | |
lru-cache "^5.1.1" | ||
semver "^6.3.1" | ||
|
||
"@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.5": | ||
"@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.22.5": | ||
version "7.22.15" | ||
resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz" | ||
integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg== | ||
|
@@ -482,7 +482,7 @@ | |
dependencies: | ||
"@babel/helper-plugin-utils" "^7.14.5" | ||
|
||
"@babel/plugin-syntax-typescript@^7.7.2": | ||
"@babel/plugin-syntax-typescript@^7.22.5", "@babel/plugin-syntax-typescript@^7.7.2": | ||
version "7.22.5" | ||
resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz" | ||
integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== | ||
|
@@ -901,6 +901,16 @@ | |
dependencies: | ||
"@babel/helper-plugin-utils" "^7.22.5" | ||
|
||
"@babel/plugin-transform-typescript@^7.22.15": | ||
version "7.22.15" | ||
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz#15adef906451d86349eb4b8764865c960eb54127" | ||
integrity sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA== | ||
dependencies: | ||
"@babel/helper-annotate-as-pure" "^7.22.5" | ||
"@babel/helper-create-class-features-plugin" "^7.22.15" | ||
"@babel/helper-plugin-utils" "^7.22.5" | ||
"@babel/plugin-syntax-typescript" "^7.22.5" | ||
|
||
"@babel/plugin-transform-unicode-escapes@^7.22.10": | ||
version "7.22.10" | ||
resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz" | ||
|
@@ -1027,7 +1037,7 @@ | |
"@babel/types" "^7.4.4" | ||
esutils "^2.0.2" | ||
|
||
"@babel/preset-react@^7.16.7": | ||
"@babel/preset-react@^7.16.7", "@babel/preset-react@^7.22.15": | ||
version "7.22.15" | ||
resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.22.15.tgz" | ||
integrity sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w== | ||
|
@@ -1039,6 +1049,17 @@ | |
"@babel/plugin-transform-react-jsx-development" "^7.22.5" | ||
"@babel/plugin-transform-react-pure-annotations" "^7.22.5" | ||
|
||
"@babel/preset-typescript@^7.23.2": | ||
version "7.23.2" | ||
resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.23.2.tgz#c8de488130b7081f7e1482936ad3de5b018beef4" | ||
integrity sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA== | ||
dependencies: | ||
"@babel/helper-plugin-utils" "^7.22.5" | ||
"@babel/helper-validator-option" "^7.22.15" | ||
"@babel/plugin-syntax-jsx" "^7.22.5" | ||
"@babel/plugin-transform-modules-commonjs" "^7.23.0" | ||
"@babel/plugin-transform-typescript" "^7.22.15" | ||
|
||
"@babel/regjsgen@^0.8.0": | ||
version "0.8.0" | ||
resolved "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz" | ||
|
@@ -1241,6 +1262,13 @@ | |
style-mod "^4.1.0" | ||
w3c-keyname "^2.2.4" | ||
|
||
"@cspotcode/source-map-support@^0.8.0": | ||
version "0.8.1" | ||
resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" | ||
integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== | ||
dependencies: | ||
"@jridgewell/trace-mapping" "0.3.9" | ||
|
||
"@ctrl/tinycolor@^3.4.0", "@ctrl/tinycolor@^3.6.0", "@ctrl/tinycolor@^3.6.1": | ||
version "3.6.1" | ||
resolved "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz" | ||
|
@@ -1761,7 +1789,7 @@ | |
"@jridgewell/sourcemap-codec" "^1.4.10" | ||
"@jridgewell/trace-mapping" "^0.3.9" | ||
|
||
"@jridgewell/resolve-uri@^3.1.0": | ||
"@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@^3.1.0": | ||
version "3.1.1" | ||
resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz" | ||
integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== | ||
|
@@ -1784,6 +1812,14 @@ | |
resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz" | ||
integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== | ||
|
||
"@jridgewell/[email protected]": | ||
version "0.3.9" | ||
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" | ||
integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== | ||
dependencies: | ||
"@jridgewell/resolve-uri" "^3.0.3" | ||
"@jridgewell/sourcemap-codec" "^1.4.10" | ||
|
||
"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.9": | ||
version "0.3.19" | ||
resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz" | ||
|
@@ -2234,6 +2270,26 @@ | |
resolved "https://registry.npmjs.org/@swc/types/-/types-0.1.5.tgz" | ||
integrity sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw== | ||
|
||
"@tsconfig/node10@^1.0.7": | ||
version "1.0.9" | ||
resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" | ||
integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== | ||
|
||
"@tsconfig/node12@^1.0.7": | ||
version "1.0.11" | ||
resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" | ||
integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== | ||
|
||
"@tsconfig/node14@^1.0.0": | ||
version "1.0.3" | ||
resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" | ||
integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== | ||
|
||
"@tsconfig/node16@^1.0.2": | ||
version "1.0.4" | ||
resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" | ||
integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== | ||
|
||
"@types/babel-types@*", "@types/babel-types@^7.0.0": | ||
version "7.0.12" | ||
resolved "https://registry.npmjs.org/@types/babel-types/-/babel-types-7.0.12.tgz" | ||
|
@@ -2257,6 +2313,13 @@ | |
dependencies: | ||
"@babel/types" "^7.0.0" | ||
|
||
"@types/babel__generator@^7.6.6": | ||
version "7.6.6" | ||
resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.6.tgz#676f89f67dc8ddaae923f70ebc5f1fa800c031a8" | ||
integrity sha512-66BXMKb/sUWbMdBNdMvajU7i/44RkrA3z/Yt1c7R5xejt8qh84iU54yUWCtm0QwGJlDcf/gg4zd/x4mpLAlb/w== | ||
dependencies: | ||
"@babel/types" "^7.0.0" | ||
|
||
"@types/babel__template@*": | ||
version "7.4.2" | ||
resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.2.tgz" | ||
|
@@ -2470,7 +2533,7 @@ | |
resolved "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz" | ||
integrity sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw== | ||
|
||
"@types/node@^20": | ||
"@types/node@^20", "@types/node@^20.8.7": | ||
version "20.8.10" | ||
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.10.tgz#a5448b895c753ae929c26ce85cab557c6d4a365e" | ||
integrity sha512-TlgT8JntpcbmKUFzjhsyhGfP2fsiz1Mv56im6enJ905xG1DAYesxJaeSbGqQmAw8OWPdhyJGhGSQGKRNJ45u9w== | ||
|
@@ -2963,6 +3026,11 @@ acorn-jsx@^5.3.2: | |
resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" | ||
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== | ||
|
||
acorn-walk@^8.1.1: | ||
version "8.3.0" | ||
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.0.tgz#2097665af50fd0cf7a2dfccd2b9368964e66540f" | ||
integrity sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA== | ||
|
||
acorn@^3.1.0: | ||
version "3.3.0" | ||
resolved "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz" | ||
|
@@ -2978,6 +3046,11 @@ acorn@^8.10.0, acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0: | |
resolved "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz" | ||
integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== | ||
|
||
acorn@^8.4.1: | ||
version "8.11.2" | ||
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.2.tgz#ca0d78b51895be5390a5903c5b3bdcdaf78ae40b" | ||
integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w== | ||
|
||
ajv-formats@^2.1.1: | ||
version "2.1.1" | ||
resolved "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz" | ||
|
@@ -3134,6 +3207,11 @@ anymatch@^3.0.3, anymatch@~3.1.2: | |
normalize-path "^3.0.0" | ||
picomatch "^2.0.4" | ||
|
||
arg@^4.1.0: | ||
version "4.1.3" | ||
resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" | ||
integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== | ||
|
||
argparse@^1.0.7: | ||
version "1.0.10" | ||
resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" | ||
|
@@ -4068,6 +4146,11 @@ create-jest@^29.7.0: | |
jest-util "^29.7.0" | ||
prompts "^2.0.1" | ||
|
||
create-require@^1.1.0: | ||
version "1.1.1" | ||
resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" | ||
integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== | ||
|
||
crelt@^1.0.5: | ||
version "1.0.6" | ||
resolved "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz" | ||
|
@@ -4248,6 +4331,11 @@ diff-sequences@^29.6.3: | |
resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz" | ||
integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== | ||
|
||
diff@^4.0.1: | ||
version "4.0.2" | ||
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" | ||
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== | ||
|
||
dir-glob@^3.0.1: | ||
version "3.0.1" | ||
resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" | ||
|
@@ -6681,7 +6769,7 @@ make-dir@^4.0.0: | |
dependencies: | ||
semver "^7.5.3" | ||
|
||
[email protected]: | ||
[email protected], make-error@^1.1.1: | ||
version "1.3.6" | ||
resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz" | ||
integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== | ||
|
@@ -9071,6 +9159,25 @@ ts-map@^1.0.3: | |
resolved "https://registry.npmjs.org/ts-map/-/ts-map-1.0.3.tgz" | ||
integrity sha512-vDWbsl26LIcPGmDpoVzjEP6+hvHZkBkLW7JpvwbCv/5IYPJlsbzCVXY3wsCeAxAUeTclNOUZxnLdGh3VBD/J6w== | ||
|
||
ts-node@^10.9.1: | ||
version "10.9.1" | ||
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" | ||
integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== | ||
dependencies: | ||
"@cspotcode/source-map-support" "^0.8.0" | ||
"@tsconfig/node10" "^1.0.7" | ||
"@tsconfig/node12" "^1.0.7" | ||
"@tsconfig/node14" "^1.0.0" | ||
"@tsconfig/node16" "^1.0.2" | ||
acorn "^8.4.1" | ||
acorn-walk "^8.1.1" | ||
arg "^4.1.0" | ||
create-require "^1.1.0" | ||
diff "^4.0.1" | ||
make-error "^1.1.1" | ||
v8-compile-cache-lib "^3.0.1" | ||
yn "3.1.1" | ||
|
||
tsconfig-paths@^3.14.2: | ||
version "3.14.2" | ||
resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz" | ||
|
@@ -9354,6 +9461,11 @@ uuid@^8.3.2: | |
resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" | ||
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== | ||
|
||
v8-compile-cache-lib@^3.0.1: | ||
version "3.0.1" | ||
resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" | ||
integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== | ||
|
||
v8-to-istanbul@^9.0.0, v8-to-istanbul@^9.0.1: | ||
version "9.1.3" | ||
resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.3.tgz#ea456604101cd18005ac2cae3cdd1aa058a6306b" | ||
|
@@ -9777,6 +9889,11 @@ yargs@~3.10.0: | |
decamelize "^1.0.0" | ||
window-size "0.1.0" | ||
|
||
[email protected]: | ||
version "3.1.1" | ||
resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" | ||
integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== | ||
|
||
yocto-queue@^0.1.0: | ||
version "0.1.0" | ||
resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" | ||
|