aboutsummaryrefslogtreecommitdiff
path: root/node_modules/cli-spinners
diff options
context:
space:
mode:
authorScoots Dash <contact@minteck.org>2022-04-23 14:12:30 +0000
committerScoots Dash <contact@minteck.org>2022-04-23 14:12:30 +0000
commita927497b43cbe1438f3d7478932f3f7d03ea347c (patch)
tree0a3c88978b4294fb30afad58daa86c46fbedc2f6 /node_modules/cli-spinners
parentba5fa694351774f2684c1aefdc215da5c6f39ba6 (diff)
parentf0db5bbbcd623812a391862d217519afafe197c6 (diff)
downloadtwilight-a927497b43cbe1438f3d7478932f3f7d03ea347c.tar.gz
twilight-a927497b43cbe1438f3d7478932f3f7d03ea347c.tar.bz2
twilight-a927497b43cbe1438f3d7478932f3f7d03ea347c.zip
Merge branch 'deprecation' into 'trunk'HEADtrunk
Disable the Twilight Package Manager See merge request minteck/twilight!1
Diffstat (limited to 'node_modules/cli-spinners')
-rw-r--r--node_modules/cli-spinners/index.d.ts125
-rw-r--r--node_modules/cli-spinners/index.js15
-rw-r--r--node_modules/cli-spinners/license9
-rw-r--r--node_modules/cli-spinners/package.json49
-rw-r--r--node_modules/cli-spinners/readme.md53
-rw-r--r--node_modules/cli-spinners/spinners.json1415
6 files changed, 0 insertions, 1666 deletions
diff --git a/node_modules/cli-spinners/index.d.ts b/node_modules/cli-spinners/index.d.ts
deleted file mode 100644
index 7247ba8..0000000
--- a/node_modules/cli-spinners/index.d.ts
+++ /dev/null
@@ -1,125 +0,0 @@
-declare namespace cliSpinners {
- type SpinnerName =
- | 'dots'
- | 'dots2'
- | 'dots3'
- | 'dots4'
- | 'dots5'
- | 'dots6'
- | 'dots7'
- | 'dots8'
- | 'dots9'
- | 'dots10'
- | 'dots11'
- | 'dots12'
- | 'dots8Bit'
- | 'line'
- | 'line2'
- | 'pipe'
- | 'simpleDots'
- | 'simpleDotsScrolling'
- | 'star'
- | 'star2'
- | 'flip'
- | 'hamburger'
- | 'growVertical'
- | 'growHorizontal'
- | 'balloon'
- | 'balloon2'
- | 'noise'
- | 'bounce'
- | 'boxBounce'
- | 'boxBounce2'
- | 'triangle'
- | 'arc'
- | 'circle'
- | 'squareCorners'
- | 'circleQuarters'
- | 'circleHalves'
- | 'squish'
- | 'toggle'
- | 'toggle2'
- | 'toggle3'
- | 'toggle4'
- | 'toggle5'
- | 'toggle6'
- | 'toggle7'
- | 'toggle8'
- | 'toggle9'
- | 'toggle10'
- | 'toggle11'
- | 'toggle12'
- | 'toggle13'
- | 'arrow'
- | 'arrow2'
- | 'arrow3'
- | 'bouncingBar'
- | 'bouncingBall'
- | 'smiley'
- | 'monkey'
- | 'hearts'
- | 'clock'
- | 'earth'
- | 'material'
- | 'moon'
- | 'runner'
- | 'pong'
- | 'shark'
- | 'dqpb'
- | 'weather'
- | 'christmas'
- | 'grenade'
- | 'point'
- | 'layer'
- | 'betaWave'
- | 'fingerDance'
- | 'fistBump'
- | 'soccerHeader'
- | 'mindblown'
- | 'speaker'
- | 'orangePulse'
- | 'bluePulse'
- | 'orangeBluePulse'
- | 'timeTravel'
- | 'aesthetic';
-
- interface Spinner {
- /**
- Recommended interval.
- */
- readonly interval: number;
-
- /**
- A list of frames to show for the spinner.
- */
- readonly frames: string[];
- }
-}
-
-/**
-70+ spinners for use in the terminal.
-
-@example
-```
-import cliSpinners = require('cli-spinners');
-
-console.log(cliSpinners.dots);
-// {
-// interval: 80,
-// frames: ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏']
-// }
-```
-*/
-declare const cliSpinners: {
- readonly [spinnerName in cliSpinners.SpinnerName]: cliSpinners.Spinner;
-} & {
- /**
- Returns a random spinner each time it's called.
- */
- readonly random: cliSpinners.Spinner;
-
- // TODO: Remove this for the next major release
- default: typeof cliSpinners;
-};
-
-export = cliSpinners;
diff --git a/node_modules/cli-spinners/index.js b/node_modules/cli-spinners/index.js
deleted file mode 100644
index d7f9941..0000000
--- a/node_modules/cli-spinners/index.js
+++ /dev/null
@@ -1,15 +0,0 @@
-'use strict';
-
-const spinners = Object.assign({}, require('./spinners.json')); // eslint-disable-line import/extensions
-
-const spinnersList = Object.keys(spinners);
-
-Object.defineProperty(spinners, 'random', {
- get() {
- const randomIndex = Math.floor(Math.random() * spinnersList.length);
- const spinnerName = spinnersList[randomIndex];
- return spinners[spinnerName];
- }
-});
-
-module.exports = spinners;
diff --git a/node_modules/cli-spinners/license b/node_modules/cli-spinners/license
deleted file mode 100644
index fa7ceba..0000000
--- a/node_modules/cli-spinners/license
+++ /dev/null
@@ -1,9 +0,0 @@
-MIT License
-
-Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
-
-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.
diff --git a/node_modules/cli-spinners/package.json b/node_modules/cli-spinners/package.json
deleted file mode 100644
index 5725f64..0000000
--- a/node_modules/cli-spinners/package.json
+++ /dev/null
@@ -1,49 +0,0 @@
-{
- "name": "cli-spinners",
- "version": "2.6.1",
- "description": "Spinners for use in the terminal",
- "license": "MIT",
- "repository": "sindresorhus/cli-spinners",
- "funding": "https://github.com/sponsors/sindresorhus",
- "author": {
- "name": "Sindre Sorhus",
- "email": "sindresorhus@gmail.com",
- "url": "https://sindresorhus.com"
- },
- "engines": {
- "node": ">=6"
- },
- "scripts": {
- "test": "xo && ava && tsd",
- "asciicast": "asciinema rec --command='node example-all.js' --title='cli-spinner' --quiet"
- },
- "files": [
- "index.js",
- "index.d.ts",
- "spinners.json"
- ],
- "keywords": [
- "cli",
- "spinner",
- "spinners",
- "terminal",
- "term",
- "console",
- "ascii",
- "unicode",
- "loading",
- "indicator",
- "progress",
- "busy",
- "wait",
- "idle",
- "json"
- ],
- "devDependencies": {
- "ava": "^1.4.1",
- "log-update": "^3.2.0",
- "string-length": "^4.0.1",
- "tsd": "^0.7.2",
- "xo": "^0.24.0"
- }
-}
diff --git a/node_modules/cli-spinners/readme.md b/node_modules/cli-spinners/readme.md
deleted file mode 100644
index 74529de..0000000
--- a/node_modules/cli-spinners/readme.md
+++ /dev/null
@@ -1,53 +0,0 @@
-# cli-spinners
-
-> 70+ spinners for use in the terminal
-
-<p align="center">
- <br>
- <img width="700" src="screenshot.svg">
- <br>
- <br>
-</p>
-
-The list of spinners is just a [JSON file](spinners.json) and can be used wherever.
-
-You probably want to use one of these spinners through the [`ora`](https://github.com/sindresorhus/ora) module.
-
-## Install
-
-```
-$ npm install cli-spinners
-```
-
-## Usage
-
-```js
-const cliSpinners = require('cli-spinners');
-
-console.log(cliSpinners.dots);
-/*
-{
- interval: 80,
- frames: ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏']
-}
-*/
-```
-
-## Preview
-
-The header GIF is outdated. See all the [spinner at once](https://jsfiddle.net/sindresorhus/2eLtsbey/embedded/result/) or [one at the time](https://asciinema.org/a/95348?size=big).
-
-## API
-
-Each spinner comes with a recommended `interval` and an array of `frames`.
-
-[See the spinners.](spinners.json)
-
-The `random` spinner will return a random spinner each time it's called.
-
-## Related
-
-- [ora](https://github.com/sindresorhus/ora) - Elegant terminal spinner
-- [CLISpinner](https://github.com/kiliankoe/CLISpinner) - Terminal spinners for Swift
-- [py-spinners](https://github.com/ManrajGrover/py-spinners) - Python port
-- [spinners](https://github.com/FGRibreau/spinners) - Terminal spinners for Rust
diff --git a/node_modules/cli-spinners/spinners.json b/node_modules/cli-spinners/spinners.json
deleted file mode 100644
index 89b0edb..0000000
--- a/node_modules/cli-spinners/spinners.json
+++ /dev/null
@@ -1,1415 +0,0 @@
-{
- "dots": {
- "interval": 80,
- "frames": [
- "⠋",
- "⠙",
- "⠹",
- "⠸",
- "⠼",
- "⠴",
- "⠦",
- "⠧",
- "⠇",
- "⠏"
- ]
- },
- "dots2": {
- "interval": 80,
- "frames": [
- "⣾",
- "⣽",
- "⣻",
- "⢿",
- "⡿",
- "⣟",
- "⣯",
- "⣷"
- ]
- },
- "dots3": {
- "interval": 80,
- "frames": [
- "⠋",
- "⠙",
- "⠚",
- "⠞",
- "⠖",
- "⠦",
- "⠴",
- "⠲",
- "⠳",
- "⠓"
- ]
- },
- "dots4": {
- "interval": 80,
- "frames": [
- "⠄",
- "⠆",
- "⠇",
- "⠋",
- "⠙",
- "⠸",
- "⠰",
- "⠠",
- "⠰",
- "⠸",
- "⠙",
- "⠋",
- "⠇",
- "⠆"
- ]
- },
- "dots5": {
- "interval": 80,
- "frames": [
- "⠋",
- "⠙",
- "⠚",
- "⠒",
- "⠂",
- "⠂",
- "⠒",
- "⠲",
- "⠴",
- "⠦",
- "⠖",
- "⠒",
- "⠐",
- "⠐",
- "⠒",
- "⠓",
- "⠋"
- ]
- },
- "dots6": {
- "interval": 80,
- "frames": [
- "⠁",
- "⠉",
- "⠙",
- "⠚",
- "⠒",
- "⠂",
- "⠂",
- "⠒",
- "⠲",
- "⠴",
- "⠤",
- "⠄",
- "⠄",
- "⠤",
- "⠴",
- "⠲",
- "⠒",
- "⠂",
- "⠂",
- "⠒",
- "⠚",
- "⠙",
- "⠉",
- "⠁"
- ]
- },
- "dots7": {
- "interval": 80,
- "frames": [
- "⠈",
- "⠉",
- "⠋",
- "⠓",
- "⠒",
- "⠐",
- "⠐",
- "⠒",
- "⠖",
- "⠦",
- "⠤",
- "⠠",
- "⠠",
- "⠤",
- "⠦",
- "⠖",
- "⠒",
- "⠐",
- "⠐",
- "⠒",
- "⠓",
- "⠋",
- "⠉",
- "⠈"
- ]
- },
- "dots8": {
- "interval": 80,
- "frames": [
- "⠁",
- "⠁",
- "⠉",
- "⠙",
- "⠚",
- "⠒",
- "⠂",
- "⠂",
- "⠒",
- "⠲",
- "⠴",
- "⠤",
- "⠄",
- "⠄",
- "⠤",
- "⠠",
- "⠠",
- "⠤",
- "⠦",
- "⠖",
- "⠒",
- "⠐",
- "⠐",
- "⠒",
- "⠓",
- "⠋",
- "⠉",
- "⠈",
- "⠈"
- ]
- },
- "dots9": {
- "interval": 80,
- "frames": [
- "⢹",
- "⢺",
- "⢼",
- "⣸",
- "⣇",
- "⡧",
- "⡗",
- "⡏"
- ]
- },
- "dots10": {
- "interval": 80,
- "frames": [
- "⢄",
- "⢂",
- "⢁",
- "⡁",
- "⡈",
- "⡐",
- "⡠"
- ]
- },
- "dots11": {
- "interval": 100,
- "frames": [
- "⠁",
- "⠂",
- "⠄",
- "⡀",
- "⢀",
- "⠠",
- "⠐",
- "⠈"
- ]
- },
- "dots12": {
- "interval": 80,
- "frames": [
- "⢀⠀",
- "⡀⠀",
- "⠄⠀",
- "⢂⠀",
- "⡂⠀",
- "⠅⠀",
- "⢃⠀",
- "⡃⠀",
- "⠍⠀",
- "⢋⠀",
- "⡋⠀",
- "⠍⠁",
- "⢋⠁",
- "⡋⠁",
- "⠍⠉",
- "⠋⠉",
- "⠋⠉",
- "⠉⠙",
- "⠉⠙",
- "⠉⠩",
- "⠈⢙",
- "⠈⡙",
- "⢈⠩",
- "⡀⢙",
- "⠄⡙",
- "⢂⠩",
- "⡂⢘",
- "⠅⡘",
- "⢃⠨",
- "⡃⢐",
- "⠍⡐",
- "⢋⠠",
- "⡋⢀",
- "⠍⡁",
- "⢋⠁",
- "⡋⠁",
- "⠍⠉",
- "⠋⠉",
- "⠋⠉",
- "⠉⠙",
- "⠉⠙",
- "⠉⠩",
- "⠈⢙",
- "⠈⡙",
- "⠈⠩",
- "⠀⢙",
- "⠀⡙",
- "⠀⠩",
- "⠀⢘",
- "⠀⡘",
- "⠀⠨",
- "⠀⢐",
- "⠀⡐",
- "⠀⠠",
- "⠀⢀",
- "⠀⡀"
- ]
- },
- "dots8Bit": {
- "interval": 80,
- "frames": [
- "⠀",
- "⠁",
- "⠂",
- "⠃",
- "⠄",
- "⠅",
- "⠆",
- "⠇",
- "⡀",
- "⡁",
- "⡂",
- "⡃",
- "⡄",
- "⡅",
- "⡆",
- "⡇",
- "⠈",
- "⠉",
- "⠊",
- "⠋",
- "⠌",
- "⠍",
- "⠎",
- "⠏",
- "⡈",
- "⡉",
- "⡊",
- "⡋",
- "⡌",
- "⡍",
- "⡎",
- "⡏",
- "⠐",
- "⠑",
- "⠒",
- "⠓",
- "⠔",
- "⠕",
- "⠖",
- "⠗",
- "⡐",
- "⡑",
- "⡒",
- "⡓",
- "⡔",
- "⡕",
- "⡖",
- "⡗",
- "⠘",
- "⠙",
- "⠚",
- "⠛",
- "⠜",
- "⠝",
- "⠞",
- "⠟",
- "⡘",
- "⡙",
- "⡚",
- "⡛",
- "⡜",
- "⡝",
- "⡞",
- "⡟",
- "⠠",
- "⠡",
- "⠢",
- "⠣",
- "⠤",
- "⠥",
- "⠦",
- "⠧",
- "⡠",
- "⡡",
- "⡢",
- "⡣",
- "⡤",
- "⡥",
- "⡦",
- "⡧",
- "⠨",
- "⠩",
- "⠪",
- "⠫",
- "⠬",
- "⠭",
- "⠮",
- "⠯",
- "⡨",
- "⡩",
- "⡪",
- "⡫",
- "⡬",
- "⡭",
- "⡮",
- "⡯",
- "⠰",
- "⠱",
- "⠲",
- "⠳",
- "⠴",
- "⠵",
- "⠶",
- "⠷",
- "⡰",
- "⡱",
- "⡲",
- "⡳",
- "⡴",
- "⡵",
- "⡶",
- "⡷",
- "⠸",
- "⠹",
- "⠺",
- "⠻",
- "⠼",
- "⠽",
- "⠾",
- "⠿",
- "⡸",
- "⡹",
- "⡺",
- "⡻",
- "⡼",
- "⡽",
- "⡾",
- "⡿",
- "⢀",
- "⢁",
- "⢂",
- "⢃",
- "⢄",
- "⢅",
- "⢆",
- "⢇",
- "⣀",
- "⣁",
- "⣂",
- "⣃",
- "⣄",
- "⣅",
- "⣆",
- "⣇",
- "⢈",
- "⢉",
- "⢊",
- "⢋",
- "⢌",
- "⢍",
- "⢎",
- "⢏",
- "⣈",
- "⣉",
- "⣊",
- "⣋",
- "⣌",
- "⣍",
- "⣎",
- "⣏",
- "⢐",
- "⢑",
- "⢒",
- "⢓",
- "⢔",
- "⢕",
- "⢖",
- "⢗",
- "⣐",
- "⣑",
- "⣒",
- "⣓",
- "⣔",
- "⣕",
- "⣖",
- "⣗",
- "⢘",
- "⢙",
- "⢚",
- "⢛",
- "⢜",
- "⢝",
- "⢞",
- "⢟",
- "⣘",
- "⣙",
- "⣚",
- "⣛",
- "⣜",
- "⣝",
- "⣞",
- "⣟",
- "⢠",
- "⢡",
- "⢢",
- "⢣",
- "⢤",
- "⢥",
- "⢦",
- "⢧",
- "⣠",
- "⣡",
- "⣢",
- "⣣",
- "⣤",
- "⣥",
- "⣦",
- "⣧",
- "⢨",
- "⢩",
- "⢪",
- "⢫",
- "⢬",
- "⢭",
- "⢮",
- "⢯",
- "⣨",
- "⣩",
- "⣪",
- "⣫",
- "⣬",
- "⣭",
- "⣮",
- "⣯",
- "⢰",
- "⢱",
- "⢲",
- "⢳",
- "⢴",
- "⢵",
- "⢶",
- "⢷",
- "⣰",
- "⣱",
- "⣲",
- "⣳",
- "⣴",
- "⣵",
- "⣶",
- "⣷",
- "⢸",
- "⢹",
- "⢺",
- "⢻",
- "⢼",
- "⢽",
- "⢾",
- "⢿",
- "⣸",
- "⣹",
- "⣺",
- "⣻",
- "⣼",
- "⣽",
- "⣾",
- "⣿"
- ]
- },
- "line": {
- "interval": 130,
- "frames": [
- "-",
- "\\",
- "|",
- "/"
- ]
- },
- "line2": {
- "interval": 100,
- "frames": [
- "⠂",
- "-",
- "–",
- "—",
- "–",
- "-"
- ]
- },
- "pipe": {
- "interval": 100,
- "frames": [
- "┤",
- "┘",
- "┴",
- "└",
- "├",
- "┌",
- "┬",
- "┐"
- ]
- },
- "simpleDots": {
- "interval": 400,
- "frames": [
- ". ",
- ".. ",
- "...",
- " "
- ]
- },
- "simpleDotsScrolling": {
- "interval": 200,
- "frames": [
- ". ",
- ".. ",
- "...",
- " ..",
- " .",
- " "
- ]
- },
- "star": {
- "interval": 70,
- "frames": [
- "✶",
- "✸",
- "✹",
- "✺",
- "✹",
- "✷"
- ]
- },
- "star2": {
- "interval": 80,
- "frames": [
- "+",
- "x",
- "*"
- ]
- },
- "flip": {
- "interval": 70,
- "frames": [
- "_",
- "_",
- "_",
- "-",
- "`",
- "`",
- "'",
- "´",
- "-",
- "_",
- "_",
- "_"
- ]
- },
- "hamburger": {
- "interval": 100,
- "frames": [
- "☱",
- "☲",
- "☴"
- ]
- },
- "growVertical": {
- "interval": 120,
- "frames": [
- "▁",
- "▃",
- "▄",
- "▅",
- "▆",
- "▇",
- "▆",
- "▅",
- "▄",
- "▃"
- ]
- },
- "growHorizontal": {
- "interval": 120,
- "frames": [
- "▏",
- "▎",
- "▍",
- "▌",
- "▋",
- "▊",
- "▉",
- "▊",
- "▋",
- "▌",
- "▍",
- "▎"
- ]
- },
- "balloon": {
- "interval": 140,
- "frames": [
- " ",
- ".",
- "o",
- "O",
- "@",
- "*",
- " "
- ]
- },
- "balloon2": {
- "interval": 120,
- "frames": [
- ".",
- "o",
- "O",
- "°",
- "O",
- "o",
- "."
- ]
- },
- "noise": {
- "interval": 100,
- "frames": [
- "▓",
- "▒",
- "░"
- ]
- },
- "bounce": {
- "interval": 120,
- "frames": [
- "⠁",
- "⠂",
- "⠄",
- "⠂"
- ]
- },
- "boxBounce": {
- "interval": 120,
- "frames": [
- "▖",
- "▘",
- "▝",
- "▗"
- ]
- },
- "boxBounce2": {
- "interval": 100,
- "frames": [
- "▌",
- "▀",
- "▐",
- "▄"
- ]
- },
- "triangle": {
- "interval": 50,
- "frames": [
- "◢",
- "◣",
- "◤",
- "◥"
- ]
- },
- "arc": {
- "interval": 100,
- "frames": [
- "◜",
- "◠",
- "◝",
- "◞",
- "◡",
- "◟"
- ]
- },
- "circle": {
- "interval": 120,
- "frames": [
- "◡",
- "⊙",
- "◠"
- ]
- },
- "squareCorners": {
- "interval": 180,
- "frames": [
- "◰",
- "◳",
- "◲",
- "◱"
- ]
- },
- "circleQuarters": {
- "interval": 120,
- "frames": [
- "◴",
- "◷",
- "◶",
- "◵"
- ]
- },
- "circleHalves": {
- "interval": 50,
- "frames": [
- "◐",
- "◓",
- "◑",
- "◒"
- ]
- },
- "squish": {
- "interval": 100,
- "frames": [
- "╫",
- "╪"
- ]
- },
- "toggle": {
- "interval": 250,
- "frames": [
- "⊶",
- "⊷"
- ]
- },
- "toggle2": {
- "interval": 80,
- "frames": [
- "▫",
- "▪"
- ]
- },
- "toggle3": {
- "interval": 120,
- "frames": [
- "□",
- "■"
- ]
- },
- "toggle4": {
- "interval": 100,
- "frames": [
- "■",
- "□",
- "▪",
- "▫"
- ]
- },
- "toggle5": {
- "interval": 100,
- "frames": [
- "▮",
- "▯"
- ]
- },
- "toggle6": {
- "interval": 300,
- "frames": [
- "ဝ",
- "၀"
- ]
- },
- "toggle7": {
- "interval": 80,
- "frames": [
- "⦾",
- "⦿"
- ]
- },
- "toggle8": {
- "interval": 100,
- "frames": [
- "◍",
- "◌"
- ]
- },
- "toggle9": {
- "interval": 100,
- "frames": [
- "◉",
- "◎"
- ]
- },
- "toggle10": {
- "interval": 100,
- "frames": [
- "㊂",
- "㊀",
- "㊁"
- ]
- },
- "toggle11": {
- "interval": 50,
- "frames": [
- "⧇",
- "⧆"
- ]
- },
- "toggle12": {
- "interval": 120,
- "frames": [
- "☗",
- "☖"
- ]
- },
- "toggle13": {
- "interval": 80,
- "frames": [
- "=",
- "*",
- "-"
- ]
- },
- "arrow": {
- "interval": 100,
- "frames": [
- "←",
- "↖",
- "↑",
- "↗",
- "→",
- "↘",
- "↓",
- "↙"
- ]
- },
- "arrow2": {
- "interval": 80,
- "frames": [
- "⬆️ ",
- "↗️ ",
- "➡️ ",
- "↘️ ",
- "⬇️ ",
- "↙️ ",
- "⬅️ ",
- "↖️ "
- ]
- },
- "arrow3": {
- "interval": 120,
- "frames": [
- "▹▹▹▹▹",
- "▸▹▹▹▹",
- "▹▸▹▹▹",
- "▹▹▸▹▹",
- "▹▹▹▸▹",
- "▹▹▹▹▸"
- ]
- },
- "bouncingBar": {
- "interval": 80,
- "frames": [
- "[ ]",
- "[= ]",
- "[== ]",
- "[=== ]",
- "[ ===]",
- "[ ==]",
- "[ =]",
- "[ ]",
- "[ =]",
- "[ ==]",
- "[ ===]",
- "[====]",
- "[=== ]",
- "[== ]",
- "[= ]"
- ]
- },
- "bouncingBall": {
- "interval": 80,
- "frames": [
- "( ● )",
- "( ● )",
- "( ● )",
- "( ● )",
- "( ●)",
- "( ● )",
- "( ● )",
- "( ● )",
- "( ● )",
- "(● )"
- ]
- },
- "smiley": {
- "interval": 200,
- "frames": [
- "😄 ",
- "😝 "
- ]
- },
- "monkey": {
- "interval": 300,
- "frames": [
- "🙈 ",
- "🙈 ",
- "🙉 ",
- "🙊 "
- ]
- },
- "hearts": {
- "interval": 100,
- "frames": [
- "💛 ",
- "💙 ",
- "💜 ",
- "💚 ",
- "❤️ "
- ]
- },
- "clock": {
- "interval": 100,
- "frames": [
- "🕛 ",
- "🕐 ",
- "🕑 ",
- "🕒 ",
- "🕓 ",
- "🕔 ",
- "🕕 ",
- "🕖 ",
- "🕗 ",
- "🕘 ",
- "🕙 ",
- "🕚 "
- ]
- },
- "earth": {
- "interval": 180,
- "frames": [
- "🌍 ",
- "🌎 ",
- "🌏 "
- ]
- },
- "material": {
- "interval": 17,
- "frames": [
- "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
- "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
- "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
- "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
- "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
- "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
- "███████▁▁▁▁▁▁▁▁▁▁▁▁▁",
- "████████▁▁▁▁▁▁▁▁▁▁▁▁",
- "█████████▁▁▁▁▁▁▁▁▁▁▁",
- "█████████▁▁▁▁▁▁▁▁▁▁▁",
- "██████████▁▁▁▁▁▁▁▁▁▁",
- "███████████▁▁▁▁▁▁▁▁▁",
- "█████████████▁▁▁▁▁▁▁",
- "██████████████▁▁▁▁▁▁",
- "██████████████▁▁▁▁▁▁",
- "▁██████████████▁▁▁▁▁",
- "▁██████████████▁▁▁▁▁",
- "▁██████████████▁▁▁▁▁",
- "▁▁██████████████▁▁▁▁",
- "▁▁▁██████████████▁▁▁",
- "▁▁▁▁█████████████▁▁▁",
- "▁▁▁▁██████████████▁▁",
- "▁▁▁▁██████████████▁▁",
- "▁▁▁▁▁██████████████▁",
- "▁▁▁▁▁██████████████▁",
- "▁▁▁▁▁██████████████▁",
- "▁▁▁▁▁▁██████████████",
- "▁▁▁▁▁▁██████████████",
- "▁▁▁▁▁▁▁█████████████",
- "▁▁▁▁▁▁▁█████████████",
- "▁▁▁▁▁▁▁▁████████████",
- "▁▁▁▁▁▁▁▁████████████",
- "▁▁▁▁▁▁▁▁▁███████████",
- "▁▁▁▁▁▁▁▁▁███████████",
- "▁▁▁▁▁▁▁▁▁▁██████████",
- "▁▁▁▁▁▁▁▁▁▁██████████",
- "▁▁▁▁▁▁▁▁▁▁▁▁████████",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁███████",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████",
- "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████",
- "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███",
- "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███",
- "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███",
- "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██",
- "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█",
- "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█",
- "██████▁▁▁▁▁▁▁▁▁▁▁▁▁█",
- "████████▁▁▁▁▁▁▁▁▁▁▁▁",
- "█████████▁▁▁▁▁▁▁▁▁▁▁",
- "█████████▁▁▁▁▁▁▁▁▁▁▁",
- "█████████▁▁▁▁▁▁▁▁▁▁▁",
- "█████████▁▁▁▁▁▁▁▁▁▁▁",
- "███████████▁▁▁▁▁▁▁▁▁",
- "████████████▁▁▁▁▁▁▁▁",
- "████████████▁▁▁▁▁▁▁▁",
- "██████████████▁▁▁▁▁▁",
- "██████████████▁▁▁▁▁▁",
- "▁██████████████▁▁▁▁▁",
- "▁██████████████▁▁▁▁▁",
- "▁▁▁█████████████▁▁▁▁",
- "▁▁▁▁▁████████████▁▁▁",
- "▁▁▁▁▁████████████▁▁▁",
- "▁▁▁▁▁▁███████████▁▁▁",
- "▁▁▁▁▁▁▁▁█████████▁▁▁",
- "▁▁▁▁▁▁▁▁█████████▁▁▁",
- "▁▁▁▁▁▁▁▁▁█████████▁▁",
- "▁▁▁▁▁▁▁▁▁█████████▁▁",
- "▁▁▁▁▁▁▁▁▁▁█████████▁",
- "▁▁▁▁▁▁▁▁▁▁▁████████▁",
- "▁▁▁▁▁▁▁▁▁▁▁████████▁",
- "▁▁▁▁▁▁▁▁▁▁▁▁███████▁",
- "▁▁▁▁▁▁▁▁▁▁▁▁███████▁",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁███████",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁███████",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
- "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁"
- ]
- },
- "moon": {
- "interval": 80,
- "frames": [
- "🌑 ",
- "🌒 ",
- "🌓 ",
- "🌔 ",
- "🌕 ",
- "🌖 ",
- "🌗 ",
- "🌘 "
- ]
- },
- "runner": {
- "interval": 140,
- "frames": [
- "🚶 ",
- "🏃 "
- ]
- },
- "pong": {
- "interval": 80,
- "frames": [
- "▐⠂ ▌",
- "▐⠈ ▌",
- "▐ ⠂ ▌",
- "▐ ⠠ ▌",
- "▐ ⡀ ▌",
- "▐ ⠠ ▌",
- "▐ ⠂ ▌",
- "▐ ⠈ ▌",
- "▐ ⠂ ▌",
- "▐ ⠠ ▌",
- "▐ ⡀ ▌",
- "▐ ⠠ ▌",
- "▐ ⠂ ▌",
- "▐ ⠈ ▌",
- "▐ ⠂▌",
- "▐ ⠠▌",
- "▐ ⡀▌",
- "▐ ⠠ ▌",
- "▐ ⠂ ▌",
- "▐ ⠈ ▌",
- "▐ ⠂ ▌",
- "▐ ⠠ ▌",
- "▐ ⡀ ▌",
- "▐ ⠠ ▌",
- "▐ ⠂ ▌",
- "▐ ⠈ ▌",
- "▐ ⠂ ▌",
- "▐ ⠠ ▌",
- "▐ ⡀ ▌",
- "▐⠠ ▌"
- ]
- },
- "shark": {
- "interval": 120,
- "frames": [
- "▐|\\____________▌",
- "▐_|\\___________▌",
- "▐__|\\__________▌",
- "▐___|\\_________▌",
- "▐____|\\________▌",
- "▐_____|\\_______▌",
- "▐______|\\______▌",
- "▐_______|\\_____▌",
- "▐________|\\____▌",
- "▐_________|\\___▌",
- "▐__________|\\__▌",
- "▐___________|\\_▌",
- "▐____________|\\▌",
- "▐____________/|▌",
- "▐___________/|_▌",
- "▐__________/|__▌",
- "▐_________/|___▌",
- "▐________/|____▌",
- "▐_______/|_____▌",
- "▐______/|______▌",
- "▐_____/|_______▌",
- "▐____/|________▌",
- "▐___/|_________▌",
- "▐__/|__________▌",
- "▐_/|___________▌",
- "▐/|____________▌"
- ]
- },
- "dqpb": {
- "interval": 100,
- "frames": [
- "d",
- "q",
- "p",
- "b"
- ]
- },
- "weather": {
- "interval": 100,
- "frames": [
- "☀️ ",
- "☀️ ",
- "☀️ ",
- "🌤 ",
- "⛅️ ",
- "🌥 ",
- "☁️ ",
- "🌧 ",
- "🌨 ",
- "🌧 ",
- "🌨 ",
- "🌧 ",
- "🌨 ",
- "⛈ ",
- "🌨 ",
- "🌧 ",
- "🌨 ",
- "☁️ ",
- "🌥 ",
- "⛅️ ",
- "🌤 ",
- "☀️ ",
- "☀️ "
- ]
- },
- "christmas": {
- "interval": 400,
- "frames": [
- "🌲",
- "🎄"
- ]
- },
- "grenade": {
- "interval": 80,
- "frames": [
- "، ",
- "′ ",
- " ´ ",
- " ‾ ",
- " ⸌",
- " ⸊",
- " |",
- " ⁎",
- " ⁕",
- " ෴ ",
- " ⁓",
- " ",
- " ",
- " "
- ]
- },
- "point": {
- "interval": 125,
- "frames": [
- "∙∙∙",
- "●∙∙",
- "∙●∙",
- "∙∙●",
- "∙∙∙"
- ]
- },
- "layer": {
- "interval": 150,
- "frames": [
- "-",
- "=",
- "≡"
- ]
- },
- "betaWave": {
- "interval": 80,
- "frames": [
- "ρββββββ",
- "βρβββββ",
- "ββρββββ",
- "βββρβββ",
- "ββββρββ",
- "βββββρβ",
- "ββββββρ"
- ]
- },
- "fingerDance": {
- "interval": 160,
- "frames": [
- "🤘 ",
- "🤟 ",
- "🖖 ",
- "✋ ",
- "🤚 ",
- "👆 "
- ]
- },
- "fistBump": {
- "interval": 80,
- "frames": [
- "🤜\u3000\u3000\u3000\u3000🤛 ",
- "🤜\u3000\u3000\u3000\u3000🤛 ",
- "🤜\u3000\u3000\u3000\u3000🤛 ",
- "\u3000🤜\u3000\u3000🤛\u3000 ",
- "\u3000\u3000🤜🤛\u3000\u3000 ",
- "\u3000🤜✨🤛\u3000\u3000 ",
- "🤜\u3000✨\u3000🤛\u3000 "
- ]
- },
- "soccerHeader": {
- "interval": 80,
- "frames": [
- " 🧑⚽️ 🧑 ",
- "🧑 ⚽️ 🧑 ",
- "🧑 ⚽️ 🧑 ",
- "🧑 ⚽️ 🧑 ",
- "🧑 ⚽️ 🧑 ",
- "🧑 ⚽️ 🧑 ",
- "🧑 ⚽️🧑 ",
- "🧑 ⚽️ 🧑 ",
- "🧑 ⚽️ 🧑 ",
- "🧑 ⚽️ 🧑 ",
- "🧑 ⚽️ 🧑 ",
- "🧑 ⚽️ 🧑 "
- ]
- },
- "mindblown": {
- "interval": 160,
- "frames": [
- "😐 ",
- "😐 ",
- "😮 ",
- "😮 ",
- "😦 ",
- "😦 ",
- "😧 ",
- "😧 ",
- "🤯 ",
- "💥 ",
- "✨ ",
- "\u3000 ",
- "\u3000 ",
- "\u3000 "
- ]
- },
- "speaker": {
- "interval": 160,
- "frames": [
- "🔈 ",
- "🔉 ",
- "🔊 ",
- "🔉 "
- ]
- },
- "orangePulse": {
- "interval": 100,
- "frames": [
- "🔸 ",
- "🔶 ",
- "🟠 ",
- "🟠 ",
- "🔶 "
- ]
- },
- "bluePulse": {
- "interval": 100,
- "frames": [
- "🔹 ",
- "🔷 ",
- "🔵 ",
- "🔵 ",
- "🔷 "
- ]
- },
- "orangeBluePulse": {
- "interval": 100,
- "frames": [
- "🔸 ",
- "🔶 ",
- "🟠 ",
- "🟠 ",
- "🔶 ",
- "🔹 ",
- "🔷 ",
- "🔵 ",
- "🔵 ",
- "🔷 "
- ]
- },
- "timeTravel": {
- "interval": 100,
- "frames": [
- "🕛 ",
- "🕚 ",
- "🕙 ",
- "🕘 ",
- "🕗 ",
- "🕖 ",
- "🕕 ",
- "🕔 ",
- "🕓 ",
- "🕒 ",
- "🕑 ",
- "🕐 "
- ]
- },
- "aesthetic": {
- "interval": 80,
- "frames": [
- "▰▱▱▱▱▱▱",
- "▰▰▱▱▱▱▱",
- "▰▰▰▱▱▱▱",
- "▰▰▰▰▱▱▱",
- "▰▰▰▰▰▱▱",
- "▰▰▰▰▰▰▱",
- "▰▰▰▰▰▰▰",
- "▰▱▱▱▱▱▱"
- ]
- }
-}