Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aiuach

Package Overview
Dependencies
Maintainers
2
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aiuach - npm Package Compare versions

Comparing version 0.1.62 to 0.1.63

static/aiuach-client/build/precache-manifest.c4f58c939701515b3834729feb04f8c3.js

2

package.json
{
"name": "aiuach",
"version": "0.1.62",
"version": "0.1.63",
"license": "MIT",

@@ -5,0 +5,0 @@ "files": [

@@ -0,0 +0,0 @@ #!/usr/bin/env node

@@ -11,6 +11,10 @@ import { has, forEach } from "lodash";

TwitterShareButton,
WhatsappShareButton,
EmailShareButton,
FacebookIcon,
TwitterIcon,
WhatsappIcon,
EmailIcon,
} from "react-share";
import { Segment, Dimmer, Loader, Image } from "semantic-ui-react";
import { Segment, Dimmer, Loader, Image, Divider } from "semantic-ui-react";
import styled from "styled-components";

@@ -27,5 +31,4 @@ import "moment/locale/es";

background-color: #f2f2f2;
padding-left: 15vw;
padding-right: 15vw;
padding-top: 7vh;
padding-left: 10vw;
padding-right: 10vw;
padding-bottom: 2vh;

@@ -36,4 +39,9 @@ @media (max-width: 1100px) {

}
@media (max-width: 700px) {
padding-left: 0px;
padding-right: 0px;
}
@media (max-device-height: 767px) and (orientation: landscape) {
padding-top: 10vw;
padding-top: 1vw;
}

@@ -43,5 +51,4 @@ `;

const ArticleSegment = styled.div`
background-color: white;
padding-top: 5em;
max-width: 1200px;
max-width: 1800px;
margin-left: auto;

@@ -52,2 +59,6 @@ margin-right: auto;

padding-bottom: 1.5em;
@media (max-width: 700px) {
padding-left: 0vw;
padding-right: 0vw;
}
`;

@@ -66,23 +77,29 @@

color: gray;
@media (max-width: 760px) {
padding-left: 9.1px;
}
`;
const Header = styled.h1`
font-size: 4em;
font-size: 3em;
text-align: left;
position: relative;
color: black;
@media (max-width: 760px) {
padding-left: 9.1px;
}
@media (max-width: 650px) {
font-size: 3em;
}
@media (max-width: 500px) {
font-size: 2.25em;
}
@media (max-width: 370px) {
font-size: 1.6875em;
}
`;
const MARKDOWN = styled.div`
text-align: justify;
width: 95%;
max-width: 700px;
padding: 1.5em 1.5em;
background-color: white;
margin-left: auto;
margin-right: auto;
font-size: 1.3em;
@media (max-width: 1100px) {
width: 100%;
padding: 1.5em 0.5em;
}

@@ -105,23 +122,53 @@ `;

const DivShare = styled.div`
position: relative;
bottom: 50px;
display: flex;
flex-direction: column;
right: 0;
width: 100%;
@media (max-width: 760px) {
flex-direction: row;
width: 100vw;
padding-left: 9.1px;
}
`;
const PShare = styled.p`
position: absolute;
top: 8px;
right: 80px;
`;
const DivFbShare = styled.div`
position: absolute;
right: 0px;
const DivRRSSShare = styled.div`
position: relative;
width: 32px;
`;
const DivTwitterShare = styled.div`
position: absolute;
width: 32px;
right: 32px;
const DivTextVideo = styled.div`
display: flex;
flex-direction: row;
justify-content: center;
@media (max-width: 1300px) {
flex-direction: column;
align-items: center;
}
`;
const DivTextIcons = styled.div`
display: flex;
flex-direction: row;
justify-content: center;
@media (max-width: 760px) {
flex-direction: column;
align-items: center;
}
`;
const DivTextTwoColumns = styled.div`
max-width: 1000px;
@media (max-width: 1300px) {
max-width: 700px;
}
`;
const DivContainerTitle = styled.div`
padding-top: 4em;
height: 100%;
@media (max-width: 1300px) {
padding-top: 0;
}
`;
class Article extends Component {

@@ -223,57 +270,91 @@ constructor(props) {

<BackgroundSegment vertical className="background-light-gray">
<ArticleSegment vertical className="segment-card">
<OnlyJavascript>
<DivShare>
<PShare>{language.buttonShare}</PShare>
<DivFbShare>
<FacebookShareButton
quote={description_rrss}
url={`https://sinantica.cl/noticias/${title_url}`}
>
<FacebookIcon size={32} />
</FacebookShareButton>
</DivFbShare>
<DivTwitterShare>
<TwitterShareButton
title={description_rrss}
url={`https://sinantica.cl/noticias/${title_url}`}
>
<TwitterIcon size={32} />
</TwitterShareButton>
</DivTwitterShare>
</DivShare>
</OnlyJavascript>
<ArticleSegment vertical>
<DivTextVideo style={{ padding: "3em 0em" }}>
<DivTextTwoColumns>
<DivContainerTitle className="segment-card">
<Header className="title-font">{title}</Header>
<Title>
{(() => {
const now = moment();
const date = moment(timestamp);
if (language.language === "es") {
return date.isValid()
? language.news.ago +
moment
.duration(now.diff(date))
.locale("es")
.humanize()
: "";
}
return date.isValid()
? moment
.duration(now.diff(date))
.locale("en")
.humanize() + language.news.ago
: "";
})()}
</Title>
<Header className="title-font">{title}</Header>
<ImagePrincipalArticle alt="article" src={urlImage} />
<Title>
{language.news.by} {author}
</Title>
<Title style={{ display: "inline" }}>
{(() => {
const now = moment();
const date = moment(timestamp);
if (language.language === "es") {
return date.isValid()
? language.news.ago +
moment
.duration(now.diff(date))
.locale("es")
.humanize()
: "";
}
return date.isValid()
? moment
.duration(now.diff(date))
.locale("en")
.humanize() + language.news.ago
: "";
})()}
</Title>
<Title>
{language.news.by} {author}
</Title>
</DivContainerTitle>
</DivTextTwoColumns>
<div style={{ padding: "1em" }} />
<DivTextTwoColumns>
<ImagePrincipalArticle alt="article" src={urlImage} />
</DivTextTwoColumns>
</DivTextVideo>
<MARKDOWN>
<Markdown container={Fragment}>{markdown}</Markdown>
</MARKDOWN>
<DivTextIcons>
<DivTextTwoColumns>
<OnlyJavascript>
<DivShare>
<DivRRSSShare>
<FacebookShareButton
quote={description_rrss}
url={`https://sinantica.cl/noticias/${title_url}`}
>
<FacebookIcon size={32} />
</FacebookShareButton>
</DivRRSSShare>
<DivRRSSShare>
<TwitterShareButton
title={description_rrss}
url={`https://sinantica.cl/noticias/${title_url}`}
>
<TwitterIcon size={32} />
</TwitterShareButton>
</DivRRSSShare>
<DivRRSSShare>
<WhatsappShareButton
title={description_rrss}
url={`https://sinantica.cl/noticias/${title_url}`}
>
<WhatsappIcon size={32} />
</WhatsappShareButton>
</DivRRSSShare>
<DivRRSSShare>
<EmailShareButton
title={description_rrss}
subject={`${title}`}
url={`https://sinantica.cl/noticias/${title_url}`}
>
<EmailIcon size={32} />
</EmailShareButton>
</DivRRSSShare>
</DivShare>
</OnlyJavascript>
</DivTextTwoColumns>
<DivTextTwoColumns>
<MARKDOWN className="lineheight segment-card">
<Markdown container={Fragment}>{markdown}</Markdown>
</MARKDOWN>
</DivTextTwoColumns>
</DivTextIcons>
</ArticleSegment>
</BackgroundSegment>
<Divider />
</Fragment>

@@ -280,0 +361,0 @@ );

@@ -10,4 +10,8 @@ import { has, reduce, map } from "lodash";

TwitterShareButton,
WhatsappShareButton,
EmailShareButton,
FacebookIcon,
TwitterIcon,
WhatsappIcon,
EmailIcon,
} from "react-share";

@@ -43,4 +47,3 @@ import {

&:hover {
font-size: 1.08em;
transition: font-size 0.4s;
transition: 0.4s;
}

@@ -50,4 +53,3 @@ @media (max-width: 1250px) {

&:hover {
font-size: 0.85em;
transition: font-size 0.4s;
transition: 0.4s;
}

@@ -58,4 +60,3 @@ }

&:hover {
font-size: 0.65em;
transition: font-size 0.4s;
transition: 0.4s;
}

@@ -66,4 +67,3 @@ }

&:hover {
font-size: 0.55em;
transition: font-size 0.4s;
transition: 0.4s;
}

@@ -74,4 +74,3 @@ }

&:hover {
font-size: 0.75em;
transition: font-size 0.4s;
transition: 0.4s;
}

@@ -206,16 +205,6 @@ }

>
{" "}
<p
style={{
position: "absolute",
right: "80px",
top: "4px",
}}
>
{language.buttonShare}
</p>
<Grid.Column
style={{
position: "absolute",
right: "0px",
right: "96px",
width: "32px",

@@ -240,3 +229,3 @@ }}

width: "32px",
right: "32px",
right: "64px",
}}

@@ -256,2 +245,35 @@ >

</Grid.Column>
<Grid.Column
style={{
position: "absolute",
width: "32px",
right: "32px",
}}
>
<WhatsappShareButton
title={value.description_rrss}
url={`https://sinantica.cl/noticias/${
value.title_url
}`}
>
<WhatsappIcon size={32} />
</WhatsappShareButton>
</Grid.Column>
<Grid.Column
style={{
position: "absolute",
width: "32px",
right: "0px",
}}
>
<EmailShareButton
title={value.description_rrss}
subject={`${value.title}`}
url={`https://sinantica.cl/noticias/${
value.title_url
}`}
>
<EmailIcon size={32} />
</EmailShareButton>
</Grid.Column>
</Grid.Row>

@@ -258,0 +280,0 @@ </OnlyJavascript>

@@ -276,4 +276,4 @@ import React, { Component } from "react";

style={{
fontSize: "5em",
position: "absolute",
fontSize: "2em",
position: "relative",
color: "#808080",

@@ -296,3 +296,3 @@ opacity: "0.5",

style={{
fontSize: "5em",
fontSize: "2em",
position: "absolute",

@@ -299,0 +299,0 @@ color: "#808080",

{
"files": {
"main.css": "/static/css/main.cacaa1e2.chunk.css",
"main.js": "/static/js/main.d4ff629d.chunk.js",
"runtime~main.js": "/static/js/runtime~main.04cc9efd.js",
"static/css/2.b872e5a8.chunk.css": "/static/css/2.b872e5a8.chunk.css",
"static/js/2.79ec2ba5.chunk.js": "/static/js/2.79ec2ba5.chunk.js",
"static/js/3.1c89187b.chunk.js": "/static/js/3.1c89187b.chunk.js",
"index.html": "/index.html",
"precache-manifest.d9a98a7ae0f152017135b4ab76f564f6.js": "/precache-manifest.d9a98a7ae0f152017135b4ab76f564f6.js",
"service-worker.js": "/service-worker.js",
"static/media/analizador_au.jpg": "/static/media/analizador_au.cb32cc92.jpg",
"static/media/background.png": "/static/media/background.61362a55.png",
"static/media/cerebro.jpg": "/static/media/cerebro.7edf8e54.jpg",
"static/media/cerebro_t.png": "/static/media/cerebro_t.1a201f9b.png",
"static/media/drl.jpg": "/static/media/drl.d2ba6527.jpg",
"static/media/heading_investigation.jpg": "/static/media/heading_investigation.f1437da9.jpg",
"static/media/heading_investigation_dark.jpg": "/static/media/heading_investigation_dark.cf28094f.jpg",
"static/media/hoja_azul.svg": "/static/media/hoja_azul.9c5cefdd.svg",
"static/media/hoja_blanca.svg": "/static/media/hoja_blanca.6c720299.svg",
"static/media/logo-gtd.jpg": "/static/media/logo-gtd.7a7a35c7.jpg",
"static/media/logo-innoving.jpg": "/static/media/logo-innoving.57915102.jpg",
"static/media/logo-uach.jpg": "/static/media/logo-uach.84482317.jpg",
"static/media/logo-uoct.jpg": "/static/media/logo-uoct.d9639d43.jpg",
"static/media/logo_azul.svg": "/static/media/logo_azul.0247acc5.svg",
"static/media/logo_blanco.svg": "/static/media/logo_blanco.aeed5678.svg",
"static/media/motorcycle-solid-black.svg": "/static/media/motorcycle-solid-black.9cb0afec.svg",
"static/media/motorcycle-solid-white.svg": "/static/media/motorcycle-solid-white.6533eab1.svg",
"static/media/pc.jpg": "/static/media/pc.d5f61a00.jpg",
"static/media/pizarra.jpg": "/static/media/pizarra.7b38c072.jpg",
"static/media/red_claro.jpg": "/static/media/red_claro.ba82faf0.jpg",
"static/media/red_oscuro.jpg": "/static/media/red_oscuro.a89fc6bd.jpg",
"static/media/sinantica-leaf-rotate.svg": "/static/media/sinantica-leaf-rotate.a196f204.svg",
"static/media/truck-pickup-solid-black.svg": "/static/media/truck-pickup-solid-black.0ac9f8b6.svg",
"static/media/truck-pickup-solid-white.svg": "/static/media/truck-pickup-solid-white.d38dbb3b.svg"
}
"main.css": "/static/css/main.9397609e.chunk.css",
"main.js": "/static/js/main.851cb726.chunk.js",
"runtime~main.js": "/static/js/runtime~main.280601ba.js",
"static/css/2.b872e5a8.chunk.css": "/static/css/2.b872e5a8.chunk.css",
"static/js/2.71a98442.chunk.js": "/static/js/2.71a98442.chunk.js",
"static/js/3.3f225ae1.chunk.js": "/static/js/3.3f225ae1.chunk.js",
"index.html": "/index.html",
"precache-manifest.c4f58c939701515b3834729feb04f8c3.js": "/precache-manifest.c4f58c939701515b3834729feb04f8c3.js",
"service-worker.js": "/service-worker.js",
"static/media/analizador_au.jpg": "/static/media/analizador_au.cb32cc92.jpg",
"static/media/background.png": "/static/media/background.61362a55.png",
"static/media/cerebro.jpg": "/static/media/cerebro.7edf8e54.jpg",
"static/media/cerebro_t.png": "/static/media/cerebro_t.1a201f9b.png",
"static/media/drl.jpg": "/static/media/drl.d2ba6527.jpg",
"static/media/heading_investigation.jpg": "/static/media/heading_investigation.f1437da9.jpg",
"static/media/heading_investigation_dark.jpg": "/static/media/heading_investigation_dark.cf28094f.jpg",
"static/media/hoja_azul.svg": "/static/media/hoja_azul.9c5cefdd.svg",
"static/media/hoja_blanca.svg": "/static/media/hoja_blanca.6c720299.svg",
"static/media/logo-gtd.jpg": "/static/media/logo-gtd.7a7a35c7.jpg",
"static/media/logo-innoving.jpg": "/static/media/logo-innoving.57915102.jpg",
"static/media/logo-uach.jpg": "/static/media/logo-uach.84482317.jpg",
"static/media/logo-uoct.jpg": "/static/media/logo-uoct.d9639d43.jpg",
"static/media/logo_azul.svg": "/static/media/logo_azul.0247acc5.svg",
"static/media/logo_blanco.svg": "/static/media/logo_blanco.aeed5678.svg",
"static/media/motorcycle-solid-black.svg": "/static/media/motorcycle-solid-black.9cb0afec.svg",
"static/media/motorcycle-solid-white.svg": "/static/media/motorcycle-solid-white.6533eab1.svg",
"static/media/pc.jpg": "/static/media/pc.d5f61a00.jpg",
"static/media/pizarra.jpg": "/static/media/pizarra.7b38c072.jpg",
"static/media/red_claro.jpg": "/static/media/red_claro.ba82faf0.jpg",
"static/media/red_oscuro.jpg": "/static/media/red_oscuro.a89fc6bd.jpg",
"static/media/sinantica-leaf-rotate.svg": "/static/media/sinantica-leaf-rotate.a196f204.svg",
"static/media/truck-pickup-solid-black.svg": "/static/media/truck-pickup-solid-black.0ac9f8b6.svg",
"static/media/truck-pickup-solid-white.svg": "/static/media/truck-pickup-solid-white.d38dbb3b.svg"
}

@@ -14,16 +14,10 @@ /**

importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js");
importScripts("https://storage.googleapis.com/workbox-cdn/releases/3.6.3/workbox-sw.js");
importScripts(
"/precache-manifest.d9a98a7ae0f152017135b4ab76f564f6.js"
"/precache-manifest.c4f58c939701515b3834729feb04f8c3.js"
);
self.addEventListener('message', (event) => {
if (event.data && event.data.type === 'SKIP_WAITING') {
self.skipWaiting();
}
});
workbox.clientsClaim();
workbox.core.clientsClaim();
/**

@@ -35,7 +29,8 @@ * The workboxSW.precacheAndRoute() method efficiently caches and responds to

self.__precacheManifest = [].concat(self.__precacheManifest || []);
workbox.precaching.suppressWarnings();
workbox.precaching.precacheAndRoute(self.__precacheManifest, {});
workbox.routing.registerNavigationRoute(workbox.precaching.getCacheKeyForURL("/index.html"), {
workbox.routing.registerNavigationRoute("/index.html", {
blacklist: [/^\/_/,/\/[^\/]+\.[^\/]+$/],
});

@@ -1,1 +0,1 @@

{"aiuach-client":{"checksum":"{ name: 'src', hash: '/NN+qlAPPJUJz8+DpKgLwzT+t80=,'\n children: [\n { name: 'actions', hash: '+RaU/PC4xZ7PKMmoWXzAXAVKmk4=,'\n children: [\n { name: 'index.js', hash: 'XnAjbia8QPyJAq1ahii2CSMaHLE=' }\n { name: 'landing.js', hash: 'lpbSGfx2VxBoVCHXJZJ7QQUlALY=' }\n { name: 'mode.js', hash: 'AEdO0tZPySv7mIR+bDMhZeKZazE=' }\n { name: 'utils.js', hash: 'LNgafPNwbSEAQZ3lNI6yOZTNRpo=' }\n ]}\n { name: 'components', hash: 'AXFt0ASNr0yCScoQOwSUyn1rbvw=,'\n children: [\n { name: 'ButtonTop.js', hash: 'jweoWbfc72z76ZemYSiKC2bKEfw=' }\n { name: 'Collaborators.js', hash: 'wusEkO+8AWrK3Zv+JuuIxqNdiJs=' }\n { name: 'DarkMode.js', hash: 'vvYWPCNH8kYK9ulpZzsii+KyKtk=' }\n { name: 'FadeUp.js', hash: 'zMfZWneeUPgxyzXax5PZMW6pqa8=' }\n { name: 'Footer.js', hash: '0TeVJ69hTjm+jg95hflDwbqHcMs=' }\n { name: 'Menu.js', hash: 'K+RTrAfsvrUtlYtYgaxxgCgBnRo=' }\n { name: 'OnlyJavascript.js', hash: 'K7dDxR9WFTp26oIHWx/LIr9kFao=' }\n { name: 'Preload.js', hash: 'XynnKVN7mJqNvwaiX+vdCqIvJuk=' }\n { name: 'Report.js', hash: 'q6B7A0NXVRsZVKF0IsQpErPyoqE=' }\n { name: 'SampleImage.js', hash: 'dY8Khs4Ib0UmkC7LZ04EPAu0/n0=' }\n { name: 'ScrollImage.js', hash: 'Wpb2FRA+MGIQnIfTMIxu5p5jdqU=' }\n { name: 'ScrollToTop.js', hash: '1Xgx1XItAjdYXVKbj/xVrm7KQ9g=' }\n { name: 'TopMobile.js', hash: 'bZIc8WAiDXzdspuensyiRQX7S2U=' }\n { name: 'Videos.js', hash: 'fe06iqwCIIut4w+EQp4NrKvzJVI=' }\n { name: 'WhiteList.js', hash: 'AxmUAyRg7smJOQ3DyeD8WJUFme8=' }\n { name: 'index.js', hash: 'CquN7XBN0vYtbdQLPafCvyf0uAI=' }\n ]}\n { name: 'containers', hash: '1Be+BjOk4keQoudsCzk5ghAEqwY=,'\n children: [\n { name: 'AboutUs.js', hash: 'hvZboL06Ug6qe3wFDjwT5MY91x0=' }\n { name: 'App.js', hash: 'Hsh9fUunntZI0NiuNhL/1ymK3qc=' }\n { name: 'Article.js', hash: 'eP+4LzskRdhL58karRL2g6PT8LY=' }\n { name: 'ArticleNotFound.js', hash: 'XZ2hbUg6EuxIUfyQBCh4LGkE87M=' }\n { name: 'Auth.js', hash: 'zNucytxMgvURAZviv6A+XInEuVA=' }\n { name: 'Investigation.js', hash: 'ORIcU/PJs/HDgjI62CjoSTAdYQ4=' }\n { name: 'Landing.js', hash: 'a4qEdhEWbtKqQwPiUGM/15HC604=' }\n { name: 'News.js', hash: 'jd9184mKRffp/DqTg2ONmZ5rXq0=' }\n { name: 'NotFound.js', hash: 'jmbjHqn43CauxsBDEx6PwyNn0Eo=' }\n { name: 'Services.js', hash: 'GPoXSk/Za1jqdAp159Blik1EsCw=' }\n { name: 'UnderConstruction.js', hash: 'P0ZvQE0cEB2P3aNWvr8dfb7eizc=' }\n { name: 'WhatDoWeDo.js', hash: 'dRuB2KvuHjqGodIe5pG/w7zRcys=' }\n { name: 'index.js', hash: 'gUnQa81fhbXwdP4AmG7v01StRIg=' }\n ]}\n { name: 'dist', hash: 'Bx7dko1tgeBOo8psaGUNi7q2cPA=,'\n children: [\n { name: 'css', hash: 'mfhzmFQR3m4gq9quCwwGNY0IPT8=,'\n children: [\n { name: 'style.scss', hash: 'MSptW27+buyrikYcxkY4LI2kUEY=' }\n ]}\n { name: 'images', hash: 'q7DJs48zbqzjqhOU2q/zot/fx1Q=,'\n children: [\n { name: '1000px', hash: 'jzVQZPCvB5Ds7ip2dqCULeBmDjA=,'\n children: []}\n { name: '500px', hash: 'FWWthWI93Fiy1mJAfyWI5qwfaHI=,'\n children: []}\n ]}\n { name: 'text', hash: 'KjHsrCcSRP/Aw6q5vixBiYhOfWw=,'\n children: [\n { name: 'en.js', hash: 'Xsvtgvixh2YeK/JjIwtJEU110Y0=' }\n { name: 'es.js', hash: 'eMZ2Q968M9UTCxX4kT3aCWo6GC8=' }\n ]}\n { name: 'videos', hash: '9uGFeV94edHaqU7mgzzYE7qRNH8=,'\n children: []}\n ]}\n { name: 'googleae33f42be7745654.html', hash: 'Vsqmp24+TWLpCRiQxOv+A3o3Qvk=' }\n { name: 'index.js', hash: 'gWcqfzN2fpI4i225VSmynRkvz2s=' }\n { name: 'reducers', hash: 'm1s2A0ARGzOaa9egNcTdZZ59lLQ=,'\n children: [\n { name: 'index.js', hash: 'NOFQ6gfyMCU3r1mN4tDZnyxcWqo=' }\n { name: 'landingReducer.js', hash: 'YbTv1B0FTLFi+0dNltPViBd+Ps4=' }\n { name: 'languageReducer.js', hash: 'ibVWNAlHPFnMBnpZrY1g+tKtvz8=' }\n { name: 'modeReducer.js', hash: 'Nt2+lxEQjyytNd8eYtVFVXgqwkc=' }\n { name: 'utilsReducer.js', hash: 'XWR9M6UBI/Mf9HMBxq+123uGn5I=' }\n ]}\n { name: 'serviceWorker.js', hash: 'adrPv2m1GPjkJIj1i7A88N9L99g=' }\n { name: 'setupProxy.js', hash: 'N/df4qz07OXc9LzFvxbMAowPk/k=' }\n { name: 'types', hash: '4acwk9gXxQqQyrZ3+cMmCTymYRE=,'\n children: [\n { name: 'index.js', hash: 'TC9MSCZJbg7S3WZEN2jBIT12rtE=' }\n ]}\n { name: 'utils', hash: 'Dp/ZK94nkYgatYXi+sS6IuAqjWQ=,'\n children: [\n { name: 'index.js', hash: 'QFaMU6Zn3l9BV6e5/3L/M/uDVWk=' }\n ]}\n ]}"}}
{"aiuach-client":{"checksum":"{ name: 'src', hash: 'RXAUiCwSVPwQMRziL2loU/IwK1E=,'\n children: [\n { name: 'actions', hash: '+RaU/PC4xZ7PKMmoWXzAXAVKmk4=,'\n children: [\n { name: 'index.js', hash: 'XnAjbia8QPyJAq1ahii2CSMaHLE=' }\n { name: 'landing.js', hash: 'lpbSGfx2VxBoVCHXJZJ7QQUlALY=' }\n { name: 'mode.js', hash: 'AEdO0tZPySv7mIR+bDMhZeKZazE=' }\n { name: 'utils.js', hash: 'LNgafPNwbSEAQZ3lNI6yOZTNRpo=' }\n ]}\n { name: 'components', hash: 'AXFt0ASNr0yCScoQOwSUyn1rbvw=,'\n children: [\n { name: 'ButtonTop.js', hash: 'jweoWbfc72z76ZemYSiKC2bKEfw=' }\n { name: 'Collaborators.js', hash: 'wusEkO+8AWrK3Zv+JuuIxqNdiJs=' }\n { name: 'DarkMode.js', hash: 'vvYWPCNH8kYK9ulpZzsii+KyKtk=' }\n { name: 'FadeUp.js', hash: 'zMfZWneeUPgxyzXax5PZMW6pqa8=' }\n { name: 'Footer.js', hash: '0TeVJ69hTjm+jg95hflDwbqHcMs=' }\n { name: 'Menu.js', hash: 'K+RTrAfsvrUtlYtYgaxxgCgBnRo=' }\n { name: 'OnlyJavascript.js', hash: 'K7dDxR9WFTp26oIHWx/LIr9kFao=' }\n { name: 'Preload.js', hash: 'XynnKVN7mJqNvwaiX+vdCqIvJuk=' }\n { name: 'Report.js', hash: 'q6B7A0NXVRsZVKF0IsQpErPyoqE=' }\n { name: 'SampleImage.js', hash: 'dY8Khs4Ib0UmkC7LZ04EPAu0/n0=' }\n { name: 'ScrollImage.js', hash: 'Wpb2FRA+MGIQnIfTMIxu5p5jdqU=' }\n { name: 'ScrollToTop.js', hash: '1Xgx1XItAjdYXVKbj/xVrm7KQ9g=' }\n { name: 'TopMobile.js', hash: 'bZIc8WAiDXzdspuensyiRQX7S2U=' }\n { name: 'Videos.js', hash: 'fe06iqwCIIut4w+EQp4NrKvzJVI=' }\n { name: 'WhiteList.js', hash: 'AxmUAyRg7smJOQ3DyeD8WJUFme8=' }\n { name: 'index.js', hash: 'CquN7XBN0vYtbdQLPafCvyf0uAI=' }\n ]}\n { name: 'containers', hash: 'BXowb5K6ufWjpN/YwKXTjnhwADE=,'\n children: [\n { name: 'AboutUs.js', hash: 'hvZboL06Ug6qe3wFDjwT5MY91x0=' }\n { name: 'App.js', hash: 'Hsh9fUunntZI0NiuNhL/1ymK3qc=' }\n { name: 'Article.js', hash: 'joAPPGdvT7PoW62jQpJ0/28uff0=' }\n { name: 'ArticleNotFound.js', hash: 'XZ2hbUg6EuxIUfyQBCh4LGkE87M=' }\n { name: 'Auth.js', hash: 'zNucytxMgvURAZviv6A+XInEuVA=' }\n { name: 'Investigation.js', hash: 'ORIcU/PJs/HDgjI62CjoSTAdYQ4=' }\n { name: 'Landing.js', hash: 'a4qEdhEWbtKqQwPiUGM/15HC604=' }\n { name: 'News.js', hash: 'sUxQ9VWN8C9PSk2zUfnTqARoY+8=' }\n { name: 'NotFound.js', hash: 'jmbjHqn43CauxsBDEx6PwyNn0Eo=' }\n { name: 'Services.js', hash: 'ojCFPfCu2Lat99oGU4lGhARM8EM=' }\n { name: 'UnderConstruction.js', hash: 'P0ZvQE0cEB2P3aNWvr8dfb7eizc=' }\n { name: 'WhatDoWeDo.js', hash: 'dRuB2KvuHjqGodIe5pG/w7zRcys=' }\n { name: 'index.js', hash: 'gUnQa81fhbXwdP4AmG7v01StRIg=' }\n ]}\n { name: 'dist', hash: 'vL7L5y/b08KOIvuayR3Z5gFbDpI=,'\n children: [\n { name: 'css', hash: 'fWt4Ie5uKvq7NKcrKYZ/SpXNdp0=,'\n children: [\n { name: 'style.scss', hash: 'NjUuRAGGsn7oz5erwcEOpEtia4I=' }\n ]}\n { name: 'images', hash: 'q7DJs48zbqzjqhOU2q/zot/fx1Q=,'\n children: [\n { name: '1000px', hash: 'jzVQZPCvB5Ds7ip2dqCULeBmDjA=,'\n children: []}\n { name: '500px', hash: 'FWWthWI93Fiy1mJAfyWI5qwfaHI=,'\n children: []}\n ]}\n { name: 'text', hash: 'KjHsrCcSRP/Aw6q5vixBiYhOfWw=,'\n children: [\n { name: 'en.js', hash: 'Xsvtgvixh2YeK/JjIwtJEU110Y0=' }\n { name: 'es.js', hash: 'eMZ2Q968M9UTCxX4kT3aCWo6GC8=' }\n ]}\n { name: 'videos', hash: '9uGFeV94edHaqU7mgzzYE7qRNH8=,'\n children: []}\n ]}\n { name: 'googleae33f42be7745654.html', hash: 'Vsqmp24+TWLpCRiQxOv+A3o3Qvk=' }\n { name: 'index.js', hash: 'gWcqfzN2fpI4i225VSmynRkvz2s=' }\n { name: 'reducers', hash: 'm1s2A0ARGzOaa9egNcTdZZ59lLQ=,'\n children: [\n { name: 'index.js', hash: 'NOFQ6gfyMCU3r1mN4tDZnyxcWqo=' }\n { name: 'landingReducer.js', hash: 'YbTv1B0FTLFi+0dNltPViBd+Ps4=' }\n { name: 'languageReducer.js', hash: 'ibVWNAlHPFnMBnpZrY1g+tKtvz8=' }\n { name: 'modeReducer.js', hash: 'Nt2+lxEQjyytNd8eYtVFVXgqwkc=' }\n { name: 'utilsReducer.js', hash: 'XWR9M6UBI/Mf9HMBxq+123uGn5I=' }\n ]}\n { name: 'serviceWorker.js', hash: 'adrPv2m1GPjkJIj1i7A88N9L99g=' }\n { name: 'setupProxy.js', hash: 'N/df4qz07OXc9LzFvxbMAowPk/k=' }\n { name: 'types', hash: '4acwk9gXxQqQyrZ3+cMmCTymYRE=,'\n children: [\n { name: 'index.js', hash: 'TC9MSCZJbg7S3WZEN2jBIT12rtE=' }\n ]}\n { name: 'utils', hash: 'Dp/ZK94nkYgatYXi+sS6IuAqjWQ=,'\n children: [\n { name: 'index.js', hash: 'QFaMU6Zn3l9BV6e5/3L/M/uDVWk=' }\n ]}\n ]}"}}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc