Big bang
This commit is contained in:
commit
c8cf9e8042
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
.idea
|
||||||
|
node_modules
|
7
LICENSE
Normal file
7
LICENSE
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Copyright © 2022 <copyright holders>
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
10
README.md
Normal file
10
README.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# garrettmills/slides
|
||||||
|
|
||||||
|
A template for presentations built with Reveal.js.
|
||||||
|
|
||||||
|
Comes preconfigured with my preferred theme and plugins.
|
||||||
|
|
||||||
|
Packages in the `lib/` directory were sourced from:
|
||||||
|
|
||||||
|
- `lib/attribution/` - [rschmehl/reveal-plugins](https://github.com/rschmehl/reveal-plugins/tree/main/attribution)
|
||||||
|
|
66
index.html
Normal file
66
index.html
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="stylesheet" href="node_modules/reveal.js/dist/reveal.css">
|
||||||
|
<link rel="stylesheet" href="node_modules/reveal.js/dist/theme/night.css">
|
||||||
|
<link rel="stylesheet" href="node_modules/reveal.js/plugin/highlight/zenburn.css">
|
||||||
|
<link rel="stylesheet" href="node_modules/reveal.js-drawer/dist/drawer.css">
|
||||||
|
<link rel="stylesheet" href="lib/attribution/plugin.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="reveal">
|
||||||
|
<div class="slides">
|
||||||
|
<section>Hello, World!</section>
|
||||||
|
<section>
|
||||||
|
Slide 2!
|
||||||
|
|
||||||
|
<span class="attribution">
|
||||||
|
Template courtesy of <a target="_blank" href="https://code.garrettmills.dev/garrettmills/slides">my template</a>.
|
||||||
|
</span>
|
||||||
|
</section>
|
||||||
|
<section data-markdown>
|
||||||
|
<textarea data-template>
|
||||||
|
## Slide 3
|
||||||
|
This is a markdown slide!
|
||||||
|
|
||||||
|
- note1
|
||||||
|
- note2
|
||||||
|
- note3
|
||||||
|
|
||||||
|
```js
|
||||||
|
const a = `Hello, ${name}!`
|
||||||
|
```
|
||||||
|
---
|
||||||
|
## Slide 4
|
||||||
|
This contains some katex.
|
||||||
|
`$$\cfrac{(v, c) \Downarrow v'}{(v, c) \rightarrow v'}$$`
|
||||||
|
</textarea>
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script src="node_modules/reveal.js/dist/reveal.js"></script>
|
||||||
|
<script src="node_modules/reveal.js/plugin/markdown/markdown.js"></script>
|
||||||
|
<script src="node_modules/reveal.js/plugin/highlight/highlight.js"></script>
|
||||||
|
<script src="node_modules/reveal.js/plugin/math/math.js"></script>
|
||||||
|
<script src="node_modules/reveal.js/plugin/notes/notes.js"></script>
|
||||||
|
<script src="node_modules/reveal.js/plugin/search/search.js"></script>
|
||||||
|
<script src="node_modules/reveal.js-drawer/dist/drawer.js"></script>
|
||||||
|
<script src="lib/attribution/plugin.js"></script>
|
||||||
|
<script>
|
||||||
|
Reveal.initialize({
|
||||||
|
plugins: [
|
||||||
|
RevealMarkdown,
|
||||||
|
RevealHighlight,
|
||||||
|
RevealMath.KaTeX,
|
||||||
|
RevealNotes,
|
||||||
|
RevealSearch,
|
||||||
|
RevealDrawer,
|
||||||
|
RevealAttribution,
|
||||||
|
],
|
||||||
|
progress: false,
|
||||||
|
hash: true,
|
||||||
|
hideCursorTime: 2000,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
18
lib/attribution/plugin.css
Normal file
18
lib/attribution/plugin.css
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
/* Attribution plugin: text along the right edge of the viewport */
|
||||||
|
.attribution{
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
bottom: auto;
|
||||||
|
left: 50%;
|
||||||
|
right: auto;
|
||||||
|
font-size: 0.4em;
|
||||||
|
pointer-events: none;
|
||||||
|
text-align: center;
|
||||||
|
writing-mode: vertical-lr;
|
||||||
|
transform: translate( -50%, -50% ) scale( 100% ) rotate(-180deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Attribution plugin: activate pointer events for attribution text only */
|
||||||
|
.attribution .content{
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
75
lib/attribution/plugin.js
Normal file
75
lib/attribution/plugin.js
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
/*****************************************************************
|
||||||
|
** Author: Roland Schmehl, r.schmehl@tudelft.nl
|
||||||
|
**
|
||||||
|
** A plugin for displaying attribution texts sideways along the right
|
||||||
|
** edge of the viewport. When resizing the viewport or toggling full
|
||||||
|
** screen mode, the attribution text sticks persistently to the right
|
||||||
|
** edge of the viewport.
|
||||||
|
**
|
||||||
|
** The dynamic scaling of the attribution text via CSS transform
|
||||||
|
** is adopted from the fullscreen plugin.
|
||||||
|
**
|
||||||
|
** Version: 1.0
|
||||||
|
**
|
||||||
|
** License: MIT license (see file LICENSE)
|
||||||
|
**
|
||||||
|
******************************************************************/
|
||||||
|
|
||||||
|
window.RevealAttribution = window.RevealAttribution || {
|
||||||
|
id: 'RevealAttribution',
|
||||||
|
init: function(deck) {
|
||||||
|
initAttribution(deck);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const initAttribution = function(Reveal){
|
||||||
|
|
||||||
|
var ready = false;
|
||||||
|
var resize = false;
|
||||||
|
var scale = 1;
|
||||||
|
|
||||||
|
window.addEventListener( 'ready', function( event ) {
|
||||||
|
|
||||||
|
var content;
|
||||||
|
|
||||||
|
// Remove configured margin of the presentation
|
||||||
|
var attribution = document.getElementsByClassName("attribution");
|
||||||
|
var width = window.innerWidth;
|
||||||
|
var configuredWidth = Reveal.getConfig().width;
|
||||||
|
var configuredHeight = Reveal.getConfig().height;
|
||||||
|
|
||||||
|
scale = 1/(1-Reveal.getConfig().margin);
|
||||||
|
|
||||||
|
for (var i = 0; i < attribution.length; i++) {
|
||||||
|
content = attribution[i].innerHTML;
|
||||||
|
attribution[i].style.width = configuredWidth + "px";
|
||||||
|
attribution[i].style.height = configuredHeight + "px";
|
||||||
|
attribution[i].innerHTML = "<span class='content'>" + content + "</span>";
|
||||||
|
attribution[i].style.transform = 'translate( -50%, -50% ) scale( ' + scale*100 + '% ) rotate(-180deg)';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Scale with cover class to mimic backgroundSize cover
|
||||||
|
resizeCover();
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
window.addEventListener( 'resize', resizeCover );
|
||||||
|
|
||||||
|
function resizeCover() {
|
||||||
|
|
||||||
|
// Scale to mimic backgroundSize cover
|
||||||
|
var attribution = document.getElementsByClassName("attribution");
|
||||||
|
var xScale = window.innerWidth / Reveal.getConfig().width;
|
||||||
|
var yScale = window.innerHeight / Reveal.getConfig().height;
|
||||||
|
var s = 1;
|
||||||
|
|
||||||
|
if (xScale > yScale) {
|
||||||
|
// The div fits perfectly in x axis, stretched in y
|
||||||
|
s = xScale/yScale;
|
||||||
|
}
|
||||||
|
for (var i = 0; i < attribution.length; i++) {
|
||||||
|
attribution[i].style.transform = 'translate( -50%, -50% ) scale( ' + s*scale*100 + '% ) rotate(-180deg)';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
18
package.json
Normal file
18
package.json
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"name": "@garrettmills/slides",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"start": "http-server . -p 8000 -c-1 --no-dotfiles",
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"keywords": [],
|
||||||
|
"author": "",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"http-server": "^14.1.1",
|
||||||
|
"reveal.js": "^4.3.1",
|
||||||
|
"reveal.js-drawer": "^0.1.3"
|
||||||
|
}
|
||||||
|
}
|
281
pnpm-lock.yaml
Normal file
281
pnpm-lock.yaml
Normal file
@ -0,0 +1,281 @@
|
|||||||
|
lockfileVersion: 5.4
|
||||||
|
|
||||||
|
specifiers:
|
||||||
|
http-server: ^14.1.1
|
||||||
|
reveal.js: ^4.3.1
|
||||||
|
reveal.js-drawer: ^0.1.3
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
http-server: 14.1.1
|
||||||
|
reveal.js: 4.3.1
|
||||||
|
reveal.js-drawer: 0.1.3
|
||||||
|
|
||||||
|
packages:
|
||||||
|
|
||||||
|
/ansi-styles/4.3.0:
|
||||||
|
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
||||||
|
engines: {node: '>=8'}
|
||||||
|
dependencies:
|
||||||
|
color-convert: 2.0.1
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/async/2.6.4:
|
||||||
|
resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
|
||||||
|
dependencies:
|
||||||
|
lodash: 4.17.21
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/basic-auth/2.0.1:
|
||||||
|
resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
|
||||||
|
engines: {node: '>= 0.8'}
|
||||||
|
dependencies:
|
||||||
|
safe-buffer: 5.1.2
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/call-bind/1.0.2:
|
||||||
|
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
|
||||||
|
dependencies:
|
||||||
|
function-bind: 1.1.1
|
||||||
|
get-intrinsic: 1.1.3
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/chalk/4.1.2:
|
||||||
|
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
||||||
|
engines: {node: '>=10'}
|
||||||
|
dependencies:
|
||||||
|
ansi-styles: 4.3.0
|
||||||
|
supports-color: 7.2.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/color-convert/2.0.1:
|
||||||
|
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
||||||
|
engines: {node: '>=7.0.0'}
|
||||||
|
dependencies:
|
||||||
|
color-name: 1.1.4
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/color-name/1.1.4:
|
||||||
|
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/corser/2.0.1:
|
||||||
|
resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==}
|
||||||
|
engines: {node: '>= 0.4.0'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/debug/3.2.7:
|
||||||
|
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
|
||||||
|
peerDependencies:
|
||||||
|
supports-color: '*'
|
||||||
|
peerDependenciesMeta:
|
||||||
|
supports-color:
|
||||||
|
optional: true
|
||||||
|
dependencies:
|
||||||
|
ms: 2.1.3
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/eventemitter3/4.0.7:
|
||||||
|
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/follow-redirects/1.15.2:
|
||||||
|
resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
|
||||||
|
engines: {node: '>=4.0'}
|
||||||
|
peerDependencies:
|
||||||
|
debug: '*'
|
||||||
|
peerDependenciesMeta:
|
||||||
|
debug:
|
||||||
|
optional: true
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/function-bind/1.1.1:
|
||||||
|
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/get-intrinsic/1.1.3:
|
||||||
|
resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==}
|
||||||
|
dependencies:
|
||||||
|
function-bind: 1.1.1
|
||||||
|
has: 1.0.3
|
||||||
|
has-symbols: 1.0.3
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/has-flag/4.0.0:
|
||||||
|
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
||||||
|
engines: {node: '>=8'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/has-symbols/1.0.3:
|
||||||
|
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
|
||||||
|
engines: {node: '>= 0.4'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/has/1.0.3:
|
||||||
|
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
|
||||||
|
engines: {node: '>= 0.4.0'}
|
||||||
|
dependencies:
|
||||||
|
function-bind: 1.1.1
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/he/1.2.0:
|
||||||
|
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
|
||||||
|
hasBin: true
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/html-encoding-sniffer/3.0.0:
|
||||||
|
resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dependencies:
|
||||||
|
whatwg-encoding: 2.0.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/http-proxy/1.18.1:
|
||||||
|
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
|
||||||
|
engines: {node: '>=8.0.0'}
|
||||||
|
dependencies:
|
||||||
|
eventemitter3: 4.0.7
|
||||||
|
follow-redirects: 1.15.2
|
||||||
|
requires-port: 1.0.0
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- debug
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/http-server/14.1.1:
|
||||||
|
resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
hasBin: true
|
||||||
|
dependencies:
|
||||||
|
basic-auth: 2.0.1
|
||||||
|
chalk: 4.1.2
|
||||||
|
corser: 2.0.1
|
||||||
|
he: 1.2.0
|
||||||
|
html-encoding-sniffer: 3.0.0
|
||||||
|
http-proxy: 1.18.1
|
||||||
|
mime: 1.6.0
|
||||||
|
minimist: 1.2.6
|
||||||
|
opener: 1.5.2
|
||||||
|
portfinder: 1.0.32
|
||||||
|
secure-compare: 3.0.1
|
||||||
|
union: 0.5.0
|
||||||
|
url-join: 4.0.1
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- debug
|
||||||
|
- supports-color
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/iconv-lite/0.6.3:
|
||||||
|
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
|
||||||
|
engines: {node: '>=0.10.0'}
|
||||||
|
dependencies:
|
||||||
|
safer-buffer: 2.1.2
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/lodash/4.17.21:
|
||||||
|
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/mime/1.6.0:
|
||||||
|
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
|
||||||
|
engines: {node: '>=4'}
|
||||||
|
hasBin: true
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/minimist/1.2.6:
|
||||||
|
resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/mkdirp/0.5.6:
|
||||||
|
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
|
||||||
|
hasBin: true
|
||||||
|
dependencies:
|
||||||
|
minimist: 1.2.6
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/ms/2.1.3:
|
||||||
|
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/object-inspect/1.12.2:
|
||||||
|
resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/opener/1.5.2:
|
||||||
|
resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
|
||||||
|
hasBin: true
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/portfinder/1.0.32:
|
||||||
|
resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==}
|
||||||
|
engines: {node: '>= 0.12.0'}
|
||||||
|
dependencies:
|
||||||
|
async: 2.6.4
|
||||||
|
debug: 3.2.7
|
||||||
|
mkdirp: 0.5.6
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- supports-color
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/qs/6.11.0:
|
||||||
|
resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
|
||||||
|
engines: {node: '>=0.6'}
|
||||||
|
dependencies:
|
||||||
|
side-channel: 1.0.4
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/requires-port/1.0.0:
|
||||||
|
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/reveal.js-drawer/0.1.3:
|
||||||
|
resolution: {integrity: sha512-+ObLL2JCQxmhRJGvqnhSzo380gJiv2hMzlZimZlG1yAeXCwn+qyc/dXLQog/89vWve2RS9bk68jTYqlhPwMUBA==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/reveal.js/4.3.1:
|
||||||
|
resolution: {integrity: sha512-1kyEnWeUkaCdBdX//XXq9dtBK95ppvIlSwlHelrP8/wrX6LcsYp4HT9WTFoFEOUBfVqkm8C2aHQ367o+UKfcxw==}
|
||||||
|
engines: {node: '>=10.0.0'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/safe-buffer/5.1.2:
|
||||||
|
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/safer-buffer/2.1.2:
|
||||||
|
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/secure-compare/3.0.1:
|
||||||
|
resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/side-channel/1.0.4:
|
||||||
|
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
|
||||||
|
dependencies:
|
||||||
|
call-bind: 1.0.2
|
||||||
|
get-intrinsic: 1.1.3
|
||||||
|
object-inspect: 1.12.2
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/supports-color/7.2.0:
|
||||||
|
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
||||||
|
engines: {node: '>=8'}
|
||||||
|
dependencies:
|
||||||
|
has-flag: 4.0.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/union/0.5.0:
|
||||||
|
resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==}
|
||||||
|
engines: {node: '>= 0.8.0'}
|
||||||
|
dependencies:
|
||||||
|
qs: 6.11.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/url-join/4.0.1:
|
||||||
|
resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/whatwg-encoding/2.0.0:
|
||||||
|
resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dependencies:
|
||||||
|
iconv-lite: 0.6.3
|
||||||
|
dev: false
|
Loading…
Reference in New Issue
Block a user