@lottiefiles/lottie-player
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -1,10 +0,4 @@ | ||
import { LitElement, CSSResult } from 'lit'; | ||
import { TemplateResult } from 'lit/html.js'; | ||
import { AnimationItem } from 'lottie-web'; | ||
/** | ||
* Copyright 2023 Design Barn Inc. | ||
*/ | ||
declare enum PlayerState { | ||
import { LitElement } from "lit"; | ||
import { TemplateResult } from "lit/html.js"; | ||
export declare enum PlayerState { | ||
Destroyed = "destroyed", | ||
@@ -14,3 +8,2 @@ Error = "error", | ||
Loading = "loading", | ||
Ready = "ready", | ||
Paused = "paused", | ||
@@ -20,7 +13,7 @@ Playing = "playing", | ||
} | ||
declare enum PlayMode { | ||
export declare enum PlayMode { | ||
Bounce = "bounce", | ||
Normal = "normal" | ||
} | ||
declare enum PlayerEvents { | ||
export declare enum PlayerEvents { | ||
Complete = "complete", | ||
@@ -39,29 +32,18 @@ Destroyed = "destroyed", | ||
} | ||
interface Versions { | ||
export interface Versions { | ||
lottiePlayerVersion: string; | ||
lottieWebVersion: string; | ||
} | ||
interface InternalPlayerState { | ||
background: string; | ||
currentState: PlayerState; | ||
frame: number; | ||
seeker: number; | ||
autoplay: boolean; | ||
direction: number; | ||
hover: boolean; | ||
intermission: number; | ||
loop: boolean; | ||
count?: number; | ||
playMode: PlayMode; | ||
speed: number; | ||
} | ||
/** | ||
* Parse a resource into a JSON object or a URL string | ||
*/ | ||
declare function parseSrc(src: string | AnimationItem): string | AnimationItem; | ||
export declare function parseSrc(src: string | object): string | object; | ||
/** | ||
* LottiePlayer web component class | ||
* | ||
* @export | ||
* @class LottiePlayer | ||
* @extends {LitElement} | ||
*/ | ||
declare class LottiePlayer extends LitElement { | ||
export declare class LottiePlayer extends LitElement { | ||
/** | ||
@@ -126,7 +108,11 @@ * Autoplay animation on load. | ||
*/ | ||
renderer: 'svg' | 'canvas'; | ||
renderer: "svg"; | ||
/** | ||
* Viewbox size for renderer settings | ||
*/ | ||
viewBoxSize?: string; | ||
/** | ||
* seeker | ||
*/ | ||
seeker: number; | ||
seeker: any; | ||
/** | ||
@@ -141,6 +127,2 @@ * Animation speed. | ||
/** | ||
* Viewbox size for renderer settings | ||
*/ | ||
viewBoxSize?: string; | ||
/** | ||
* Enable web workers | ||
@@ -153,14 +135,11 @@ */ | ||
protected container: HTMLElement; | ||
private _counter; | ||
private _io; | ||
private _lottie?; | ||
private _prevState?; | ||
private _counter; | ||
/** | ||
* Destroy animation and lottie-player element. | ||
* Configure and initialize lottie-web player instance. | ||
*/ | ||
destroy(): void; | ||
load(src: string | object): Promise<void>; | ||
/** | ||
* Cleanup on component destroy. | ||
*/ | ||
disconnectedCallback(): void; | ||
/** | ||
* Returns the lottie-web instance used in the component. | ||
@@ -174,5 +153,5 @@ */ | ||
/** | ||
* Configure and initialize lottie-web player instance. | ||
* Start playing animation. | ||
*/ | ||
load(src: string | AnimationItem): Promise<void>; | ||
play(): void; | ||
/** | ||
@@ -183,11 +162,9 @@ * Pause animation play. | ||
/** | ||
* Start playing animation. | ||
* Stops animation play. | ||
*/ | ||
play(): void; | ||
getState(): InternalPlayerState; | ||
render(): TemplateResult | void; | ||
stop(): void; | ||
/** | ||
* Resize animation. | ||
* Destroy animation and lottie-player element. | ||
*/ | ||
resize(): void; | ||
destroy(): void; | ||
/** | ||
@@ -198,29 +175,29 @@ * Seek to a given frame. | ||
/** | ||
* Animation play direction. | ||
* Snapshot the current frame as SVG. | ||
* | ||
* @param value - Direction values. | ||
* If 'download' argument is boolean true, then a download is triggered in browser. | ||
*/ | ||
setDirection(value: 1 | -1): void; | ||
snapshot(download?: boolean): string | void; | ||
/** | ||
* Sets the looping of the animation. | ||
* Sets animation play speed. | ||
* | ||
* @param value - Whether to enable looping. Boolean true enables looping. | ||
* @param value Playback speed. | ||
*/ | ||
setLooping(value: boolean): void; | ||
setSpeed(value?: number): void; | ||
/** | ||
* Sets animation play speed. | ||
* Animation play direction. | ||
* | ||
* @param value - Playback speed. | ||
* @param value Direction values. | ||
*/ | ||
setSpeed(value?: number): void; | ||
setDirection(value: number): void; | ||
/** | ||
* Snapshot the current frame as SVG. | ||
* Sets the looping of the animation. | ||
* | ||
* If 'download' argument is boolean true, then a download is triggered in browser. | ||
* @param value Whether to enable looping. Boolean true enables looping. | ||
*/ | ||
snapshot(download?: boolean): string; | ||
setLooping(value: boolean): void; | ||
/** | ||
* Stops animation play. | ||
* Toggle playing state. | ||
*/ | ||
stop(): void; | ||
togglePlay(): void; | ||
/** | ||
@@ -231,9 +208,14 @@ * Toggles animation looping. | ||
/** | ||
* Toggle playing state. | ||
* Resize animation. | ||
*/ | ||
togglePlay(): void; | ||
resize(): void; | ||
/** | ||
* Returns the styles for the component. | ||
*/ | ||
static get styles(): CSSResult; | ||
static get styles(): import("lit").CSSResult; | ||
/** | ||
* Cleanup on component destroy. | ||
*/ | ||
disconnectedCallback(): void; | ||
render(): TemplateResult | void; | ||
protected createRenderRoot(): Element | ShadowRoot; | ||
@@ -243,11 +225,8 @@ /** | ||
*/ | ||
protected firstUpdated(): Promise<void>; | ||
protected firstUpdated(): void; | ||
protected renderControls(): TemplateResult; | ||
private _attachEventListeners; | ||
/** | ||
* Freeze animation play. | ||
* This internal state pauses animation and is used to differentiate between | ||
* user requested pauses and component instigated pauses. | ||
* Handle visibility change events. | ||
*/ | ||
private _freeze; | ||
private _onVisibilityChange; | ||
/** | ||
@@ -257,8 +236,10 @@ * Handles click and drag actions on the progress track. | ||
private _handleSeekChange; | ||
private _attachEventListeners; | ||
/** | ||
* Handle visibility change events. | ||
* Freeze animation play. | ||
* This internal state pauses animation and is used to differentiate between | ||
* user requested pauses and component instigated pauses. | ||
*/ | ||
private _onVisibilityChange; | ||
private freeze; | ||
} | ||
export { InternalPlayerState, LottiePlayer, PlayMode, PlayerEvents, PlayerState, Versions, parseSrc }; | ||
//# sourceMappingURL=lottie-player.d.ts.map |
@@ -1,239 +0,6 @@ | ||
import { LitElement, CSSResult } from 'lit'; | ||
import { TemplateResult } from 'lit/html.js'; | ||
import { AnimationItem } from 'lottie-web'; | ||
/** | ||
* Copyright 2023 Design Barn Inc. | ||
* Copyright 2022 Design Barn Inc. | ||
*/ | ||
declare enum PlayerState { | ||
Destroyed = "destroyed", | ||
Error = "error", | ||
Frozen = "frozen", | ||
Loading = "loading", | ||
Ready = "ready", | ||
Paused = "paused", | ||
Playing = "playing", | ||
Stopped = "stopped" | ||
} | ||
declare enum PlayMode { | ||
Bounce = "bounce", | ||
Normal = "normal" | ||
} | ||
interface Versions { | ||
lottiePlayerVersion: string; | ||
lottieWebVersion: string; | ||
} | ||
interface InternalPlayerState { | ||
background: string; | ||
currentState: PlayerState; | ||
frame: number; | ||
seeker: number; | ||
autoplay: boolean; | ||
direction: number; | ||
hover: boolean; | ||
intermission: number; | ||
loop: boolean; | ||
count?: number; | ||
playMode: PlayMode; | ||
speed: number; | ||
} | ||
import { LottiePlayer } from "./lottie-player"; | ||
/** | ||
* LottiePlayer web component class | ||
* | ||
*/ | ||
declare class LottiePlayer extends LitElement { | ||
/** | ||
* Autoplay animation on load. | ||
*/ | ||
autoplay: boolean; | ||
/** | ||
* Background color. | ||
*/ | ||
background?: string; | ||
/** | ||
* Show controls. | ||
*/ | ||
controls: boolean; | ||
/** | ||
* Number of times to loop animation. | ||
*/ | ||
count?: number; | ||
/** | ||
* Player state. | ||
*/ | ||
currentState: PlayerState; | ||
/** | ||
* Animation description for screen readers. | ||
*/ | ||
description: string; | ||
/** | ||
* Direction of animation. | ||
*/ | ||
direction: number; | ||
/** | ||
* Disable checking if the Lottie is valid before loading | ||
*/ | ||
disableCheck?: boolean; | ||
/** | ||
* Disable using shadow dom as the root | ||
*/ | ||
disableShadowDOM: boolean; | ||
/** | ||
* Whether to play on mouse hover | ||
*/ | ||
hover: boolean; | ||
/** | ||
* Intermission | ||
*/ | ||
intermission: number; | ||
/** | ||
* Whether to loop animation. | ||
*/ | ||
loop: boolean; | ||
/** | ||
* Play mode. | ||
*/ | ||
mode: PlayMode; | ||
/** | ||
* Aspect ratio to pass to lottie-web. | ||
*/ | ||
preserveAspectRatio: string; | ||
/** | ||
* Renderer to use. | ||
*/ | ||
renderer: 'svg' | 'canvas'; | ||
/** | ||
* seeker | ||
*/ | ||
seeker: number; | ||
/** | ||
* Animation speed. | ||
*/ | ||
speed: number; | ||
/** | ||
* Bodymovin JSON data or URL to JSON. | ||
*/ | ||
src?: string; | ||
/** | ||
* Viewbox size for renderer settings | ||
*/ | ||
viewBoxSize?: string; | ||
/** | ||
* Enable web workers | ||
*/ | ||
webworkers?: boolean; | ||
/** | ||
* Animation container. | ||
*/ | ||
protected container: HTMLElement; | ||
private _counter; | ||
private _io; | ||
private _lottie?; | ||
/** | ||
* Destroy animation and lottie-player element. | ||
*/ | ||
destroy(): void; | ||
/** | ||
* Cleanup on component destroy. | ||
*/ | ||
disconnectedCallback(): void; | ||
/** | ||
* Returns the lottie-web instance used in the component. | ||
*/ | ||
getLottie(): any; | ||
/** | ||
* Returns the lottie-web version and this player's version | ||
*/ | ||
getVersions(): Versions; | ||
/** | ||
* Configure and initialize lottie-web player instance. | ||
*/ | ||
load(src: string | AnimationItem): Promise<void>; | ||
/** | ||
* Pause animation play. | ||
*/ | ||
pause(): void; | ||
/** | ||
* Start playing animation. | ||
*/ | ||
play(): void; | ||
getState(): InternalPlayerState; | ||
render(): TemplateResult | void; | ||
/** | ||
* Resize animation. | ||
*/ | ||
resize(): void; | ||
/** | ||
* Seek to a given frame. | ||
*/ | ||
seek(value: number | string): void; | ||
/** | ||
* Animation play direction. | ||
* | ||
* @param value - Direction values. | ||
*/ | ||
setDirection(value: 1 | -1): void; | ||
/** | ||
* Sets the looping of the animation. | ||
* | ||
* @param value - Whether to enable looping. Boolean true enables looping. | ||
*/ | ||
setLooping(value: boolean): void; | ||
/** | ||
* Sets animation play speed. | ||
* | ||
* @param value - Playback speed. | ||
*/ | ||
setSpeed(value?: number): void; | ||
/** | ||
* Snapshot the current frame as SVG. | ||
* | ||
* If 'download' argument is boolean true, then a download is triggered in browser. | ||
*/ | ||
snapshot(download?: boolean): string; | ||
/** | ||
* Stops animation play. | ||
*/ | ||
stop(): void; | ||
/** | ||
* Toggles animation looping. | ||
*/ | ||
toggleLooping(): void; | ||
/** | ||
* Toggle playing state. | ||
*/ | ||
togglePlay(): void; | ||
/** | ||
* Returns the styles for the component. | ||
*/ | ||
static get styles(): CSSResult; | ||
protected createRenderRoot(): Element | ShadowRoot; | ||
/** | ||
* Initialize everything on component first render. | ||
*/ | ||
protected firstUpdated(): Promise<void>; | ||
protected renderControls(): TemplateResult; | ||
private _attachEventListeners; | ||
/** | ||
* Freeze animation play. | ||
* This internal state pauses animation and is used to differentiate between | ||
* user requested pauses and component instigated pauses. | ||
*/ | ||
private _freeze; | ||
/** | ||
* Handles click and drag actions on the progress track. | ||
*/ | ||
private _handleSeekChange; | ||
/** | ||
* Handle visibility change events. | ||
*/ | ||
private _onVisibilityChange; | ||
} | ||
/** | ||
* Copyright 2023 Design Barn Inc. | ||
*/ | ||
/** | ||
* TGSPlayer web component class | ||
@@ -245,3 +12,3 @@ * | ||
*/ | ||
declare class TGSPlayer extends LottiePlayer { | ||
export declare class TGSPlayer extends LottiePlayer { | ||
/** | ||
@@ -254,7 +21,7 @@ * Strict format checks for TGS. | ||
*/ | ||
load(src: string | AnimationItem): Promise<void>; | ||
load(src: string | object): Promise<void>; | ||
/** | ||
* Returns the styles for the component. | ||
*/ | ||
static get styles(): CSSResult; | ||
static get styles(): import("lit").CSSResult; | ||
protected formatCheck(data: any): string[]; | ||
@@ -264,3 +31,2 @@ private checkLayer; | ||
} | ||
export { TGSPlayer }; | ||
//# sourceMappingURL=tgs-player.d.ts.map |
139
package.json
{ | ||
"name": "@lottiefiles/lottie-player", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Lottie animation and Telegram Sticker player web components.", | ||
"main": "dist/lottie-player.js", | ||
"module": "dist/lottie-player.esm.js", | ||
"types": "dist/lottie-player.d.ts", | ||
"homepage": "https://lottiefiles.com/web-player", | ||
"repository": "https://github.com/LottieFiles/lottie-player.git", | ||
"homepage": "https://lottiefiles.com/web-player", | ||
"bugs": "https://github.com/LottieFiles/lottie-player/issues", | ||
"author": "Jawish Hameed <jawish@lottiefiles.com>", | ||
"license": "MIT", | ||
"main": "dist/lottie-player.js", | ||
"module": "dist/lottie-player.mjs", | ||
"types": "dist/lottie-player.d.ts", | ||
"scripts": { | ||
"prestart": "node -p \"'export const LOTTIE_PLAYER_VERSION = ' + JSON.stringify(require('./package.json').version) + '; \\n' + 'export const LOTTIE_WEB_VERSION = ' + JSON.stringify(require('./package.json').dependencies['lottie-web']) + ';'\" > src/versions.ts", | ||
"start": "npm run cleanup && rollup -c --watch", | ||
"prebuild": "node -p \"'export const LOTTIE_PLAYER_VERSION = ' + JSON.stringify(require('./package.json').version) + '; \\n' + 'export const LOTTIE_WEB_VERSION = ' + JSON.stringify(require('./package.json').dependencies['lottie-web']) + ';'\" > src/versions.ts", | ||
"build": "npm run cleanup && npm run build-lottie && npm run build-tgs", | ||
"build-with-coverage": "npm run cleanup && CODE_COVERAGE=true npm run build-lottie && CODE_COVERAGE=true npm run build-tgs", | ||
"build-lottie": "rollup -c ", | ||
"build-tgs": "rollup -c rollup-tgs.config.js", | ||
"watch-lottie": "npm run cleanup && rollup -c --watch", | ||
"watch-tgs": "npm run cleanup && rollup -c rollup-tgs.config.js --watch", | ||
"cleanup": "shx rm -rf dist && shx mkdir dist", | ||
"release": "semantic-release", | ||
"lint": "eslint . --ext .ts,.tsx,.js", | ||
"lint:fix": "eslint . --ext .ts,.tsx,.js --fix", | ||
"serve": "node ./cypress/pages/server.js -p 8000 &", | ||
"start-cypress": "yarn run cypress run && npx nyc report --reporter=text-summary", | ||
"run-tests": "yarn run build-with-coverage && yarn run serve && yarn run start-cypress", | ||
"postrun-tests": "kill $(lsof -t -i:8000)" | ||
}, | ||
"dependencies": { | ||
"@types/pako": "^1.0.1", | ||
"lit": "^2.1.2", | ||
"lottie-web": "^5.10.0", | ||
"pako": "^2.0.4", | ||
"resize-observer-polyfill": "^1.5.1" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.11.0", | ||
"@babel/plugin-proposal-class-properties": "^7.10.4", | ||
"@babel/plugin-proposal-decorators": "^7.10.5", | ||
"@babel/preset-env": "^7.11.0", | ||
"@babel/preset-typescript": "^7.10.4", | ||
"@commitlint/cli": "^16.1.0", | ||
"@commitlint/config-conventional": "^16.0.0", | ||
"@cypress/code-coverage": "^3.9.12", | ||
"@istanbuljs/nyc-config-typescript": "^1.0.2", | ||
"@lottiefiles/eslint-plugin": "^2.2.0", | ||
"@rollup/plugin-babel": "^5.1.0", | ||
"@rollup/plugin-commonjs": "^21.0.1", | ||
"@rollup/plugin-node-resolve": "^13.1.3", | ||
"@semantic-release/changelog": "^6.0.1", | ||
"@semantic-release/commit-analyzer": "^9.0.2", | ||
"@semantic-release/git": "^10.0.1", | ||
"@semantic-release/github": "^8.0.2", | ||
"@semantic-release/npm": "^9.0.0", | ||
"@semantic-release/release-notes-generator": "^10.0.3", | ||
"babel-eslint": "^10.1.0", | ||
"babel-plugin-istanbul": "^6.1.1", | ||
"cypress": "^9.2.1", | ||
"cypress-real-events": "^1.6.0", | ||
"eslint": "^7.27.0", | ||
"eslint-plugin-only-warn": "^1.0.2", | ||
"fastify": "^3.25.3", | ||
"fastify-static": "^4.5.0", | ||
"husky": ">=4", | ||
"lerna": "^4.0.0", | ||
"lint-staged": "^12.3.2", | ||
"parcel-bundler": "^1.12.4", | ||
"prettier": "^2.3.0", | ||
"rollup": "^2.23.0", | ||
"rollup-plugin-copy": "^3.3.0", | ||
"rollup-plugin-filesize": "^9.0.2", | ||
"rollup-plugin-serve": "^1.0.3", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"rollup-plugin-typescript2": "^0.31.1", | ||
"rollup-plugin-uglify": "^6.0.4", | ||
"rollup-plugin-visualizer": "^5.5.4", | ||
"semantic-release": "^19.0.2", | ||
"shx": "^0.3.4", | ||
"source-map-support": "^0.5.21", | ||
"ts-node": "^10.4.0", | ||
"typescript": "^4.5.5", | ||
"unicode-canonical-property-names-ecmascript": "^2.0.0" | ||
}, | ||
"files": [ | ||
@@ -27,36 +101,8 @@ "dist/" | ||
], | ||
"dependencies": { | ||
"@changesets/cli": "^2.26.1", | ||
"@types/pako": "^1.0.4", | ||
"lit": "^2.4.1", | ||
"lottie-web": "^5.12.0", | ||
"pako": "^2.1.0", | ||
"resize-observer-polyfill": "^1.5.1" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^16.3.0", | ||
"@commitlint/config-conventional": "^16.2.4", | ||
"@lottiefiles/eslint-plugin": "^3.0.0", | ||
"@lottiefiles/prettier-config": "^3.0.0", | ||
"cypress": "^12.13.0", | ||
"cypress-ct-lit": "^0.3.2", | ||
"cypress-real-events": "^1.7.4", | ||
"eslint": "^7.32.0", | ||
"eslint-plugin-only-warn": "^1.0.3", | ||
"husky": "^8.0.2", | ||
"lint-staged": "^12.5.0", | ||
"prettier": "^2.8.0", | ||
"ts-node": "^10.9.1", | ||
"tsup": "^6.7.0", | ||
"turbo": "^1.10.2", | ||
"typescript": "^4.9.3", | ||
"unicode-canonical-property-names-ecmascript": "^2.0.0", | ||
"vite": "^4.3.9" | ||
}, | ||
"browserslist": [ | ||
"> 3%" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"browserslist": [ | ||
"> 3%" | ||
], | ||
"husky": { | ||
@@ -79,22 +125,3 @@ "hooks": { | ||
"all": true | ||
}, | ||
"scripts": { | ||
"build": "tsup", | ||
"changelog": "changeset add", | ||
"changelog:check": "changeset status --since=main", | ||
"dev": "tsup --watch", | ||
"format": "pnpm run format:prettier", | ||
"format:prettier": "prettier --loglevel=warn --no-editorconfig --write .", | ||
"format:remark": "remark . --output --ignore-path .remarkignore --silently-ignore", | ||
"lint": "eslint . --ext .ts,.tsx,.js", | ||
"lint:fix": "eslint . --ext .ts,.tsx,.js --fix", | ||
"open": "cypress open", | ||
"preinstall": "npx only-allow pnpm", | ||
"release": "pnpm release:version && pnpm release:publish", | ||
"release:publish": "pnpm build && changeset publish", | ||
"release:tag": "changeset tag", | ||
"release:version": "changeset version", | ||
"test": "cypress run --component", | ||
"type-check": "turbo run type-check" | ||
} | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
Found 1 instance in 1 package
6862361
5
21
0
9
46
6264
- Removed@changesets/cli@^2.26.1
- Removed@babel/runtime@7.26.9(transitive)
- Removed@changesets/apply-release-plan@7.0.10(transitive)
- Removed@changesets/assemble-release-plan@6.0.6(transitive)
- Removed@changesets/changelog-git@0.2.1(transitive)
- Removed@changesets/cli@2.28.1(transitive)
- Removed@changesets/config@3.1.1(transitive)
- Removed@changesets/errors@0.2.0(transitive)
- Removed@changesets/get-dependents-graph@2.1.3(transitive)
- Removed@changesets/get-release-plan@4.0.8(transitive)
- Removed@changesets/get-version-range-type@0.4.0(transitive)
- Removed@changesets/git@3.0.2(transitive)
- Removed@changesets/logger@0.1.1(transitive)
- Removed@changesets/parse@0.4.1(transitive)
- Removed@changesets/pre@2.0.2(transitive)
- Removed@changesets/read@0.6.3(transitive)
- Removed@changesets/should-skip-package@0.1.2(transitive)
- Removed@changesets/types@4.1.06.1.0(transitive)
- Removed@changesets/write@0.4.0(transitive)
- Removed@manypkg/find-root@1.1.0(transitive)
- Removed@manypkg/get-packages@1.1.3(transitive)
- Removed@nodelib/fs.scandir@2.1.5(transitive)
- Removed@nodelib/fs.stat@2.0.5(transitive)
- Removed@nodelib/fs.walk@1.2.8(transitive)
- Removed@types/node@12.20.55(transitive)
- Removedansi-colors@4.1.3(transitive)
- Removedansi-regex@5.0.1(transitive)
- Removedargparse@1.0.10(transitive)
- Removedarray-union@2.1.0(transitive)
- Removedbetter-path-resolve@1.0.0(transitive)
- Removedbraces@3.0.3(transitive)
- Removedchardet@0.7.0(transitive)
- Removedci-info@3.9.0(transitive)
- Removedcross-spawn@7.0.6(transitive)
- Removeddetect-indent@6.1.0(transitive)
- Removeddir-glob@3.0.1(transitive)
- Removedenquirer@2.4.1(transitive)
- Removedesprima@4.0.1(transitive)
- Removedextendable-error@0.1.7(transitive)
- Removedexternal-editor@3.1.0(transitive)
- Removedfast-glob@3.3.3(transitive)
- Removedfastq@1.19.1(transitive)
- Removedfill-range@7.1.1(transitive)
- Removedfind-up@4.1.0(transitive)
- Removedfs-extra@7.0.18.1.0(transitive)
- Removedglob-parent@5.1.2(transitive)
- Removedglobby@11.1.0(transitive)
- Removedgraceful-fs@4.2.11(transitive)
- Removedhuman-id@4.1.1(transitive)
- Removediconv-lite@0.4.24(transitive)
- Removedignore@5.3.2(transitive)
- Removedis-extglob@2.1.1(transitive)
- Removedis-glob@4.0.3(transitive)
- Removedis-number@7.0.0(transitive)
- Removedis-subdir@1.2.0(transitive)
- Removedis-windows@1.0.2(transitive)
- Removedisexe@2.0.0(transitive)
- Removedjs-yaml@3.14.1(transitive)
- Removedjsonfile@4.0.0(transitive)
- Removedlocate-path@5.0.0(transitive)
- Removedlodash.startcase@4.4.0(transitive)
- Removedmerge2@1.4.1(transitive)
- Removedmicromatch@4.0.8(transitive)
- Removedmri@1.2.0(transitive)
- Removedos-tmpdir@1.0.2(transitive)
- Removedoutdent@0.5.0(transitive)
- Removedp-filter@2.1.0(transitive)
- Removedp-limit@2.3.0(transitive)
- Removedp-locate@4.1.0(transitive)
- Removedp-map@2.1.0(transitive)
- Removedp-try@2.2.0(transitive)
- Removedpackage-manager-detector@0.2.11(transitive)
- Removedpath-exists@4.0.0(transitive)
- Removedpath-key@3.1.1(transitive)
- Removedpath-type@4.0.0(transitive)
- Removedpicocolors@1.1.1(transitive)
- Removedpicomatch@2.3.1(transitive)
- Removedpify@4.0.1(transitive)
- Removedprettier@2.8.8(transitive)
- Removedquansync@0.2.8(transitive)
- Removedqueue-microtask@1.2.3(transitive)
- Removedread-yaml-file@1.1.0(transitive)
- Removedregenerator-runtime@0.14.1(transitive)
- Removedresolve-from@5.0.0(transitive)
- Removedreusify@1.1.0(transitive)
- Removedrun-parallel@1.2.0(transitive)
- Removedsafer-buffer@2.1.2(transitive)
- Removedsemver@7.7.1(transitive)
- Removedshebang-command@2.0.0(transitive)
- Removedshebang-regex@3.0.0(transitive)
- Removedsignal-exit@4.1.0(transitive)
- Removedslash@3.0.0(transitive)
- Removedspawndamnit@3.0.1(transitive)
- Removedsprintf-js@1.0.3(transitive)
- Removedstrip-ansi@6.0.1(transitive)
- Removedstrip-bom@3.0.0(transitive)
- Removedterm-size@2.2.1(transitive)
- Removedtmp@0.0.33(transitive)
- Removedto-regex-range@5.0.1(transitive)
- Removeduniversalify@0.1.2(transitive)
- Removedwhich@2.0.2(transitive)
Updated@types/pako@^1.0.1
Updatedlit@^2.1.2
Updatedlottie-web@^5.10.0
Updatedpako@^2.0.4