
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@atcute/frontpage
Advanced tools
Frontpage (fyi.unravel.frontpage.*) schema definitions
import { FyiUnravelFrontpagePost } from '@atcute/frontpage';
import { is } from '@atcute/lexicons';
const post: FyiUnravelFrontpagePost.Main = {
$type: 'fyi.unravel.frontpage.post',
url: 'https://github.com/mary-ext/atcute',
title: 'collection of lightweight TypeScript packages for dealing with AT Protocol',
createdAt: '2024-10-16T16:12:01.599Z',
};
is(FyiUnravelFrontpagePost.mainSchema, post);
// -> true
@atcute/clientpick either one of these 3 options to register the ambient declarations
// tsconfig.json
{
"compilerOptions": {
"types": ["@atcute/frontpage"],
},
}
// env.d.ts
/// <reference types="@atcute/frontpage" />
// index.ts
import type {} from '@atcute/frontpage';
now all the XRPC operations should be visible in the client
@atcute/lex-cliwhen building your own lexicons that reference Frontpage types, configure lex-cli to import from this package:
// file: lex.config.js
import { defineLexiconConfig } from '@atcute/lex-cli';
export default defineLexiconConfig({
files: ['lexicons/**/*.json'],
outdir: 'src/lexicons/',
imports: ['@atcute/frontpage'],
});
FAQs
Frontpage (fyi.unravel.frontpage.*) schema definitions
We found that @atcute/frontpage demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.