
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@exodus/dependency-types
Advanced tools
This package ships types for dependency injection definitions, nodes, and features. The types are separate from @exodus/dependency-injection/@exodus/argo to avoid circular dependencies.
yarn add @exodus/dependency-types
Consider using the -D flag in JS projects or TS projects that don't re-export any types from this package.
If you're working on a typescript feature, you should type your definitions or features with satisfies expressions. Here's an example of a definition:
import type { Definition } from '@exodus/dependency-types'
const batmobileDefinition = {
// the type guarantees auto-complete and the correct shape of the definition
} as const satisfies Definition
Avoid using a direct type annotation as it changes the type of properties such as id or type to string instead of their concrete values. These are required for statically deriving the type of the exodus api. Definitions can be used as part of a feature or directly registered in a dependency-injection container instance.
To type a feature factory, use the Feature type:
import type { Feature } from '@exodus/dependency-types'
const batmobileFeature = () =>
({
id: 'batmobile',
definitions: [],
}) as const satisfies Feature
A feature can be registered with @exodus/argo or @exodus/headless.
In JS packages, jsdocs can be used to document the types:
/**
* @typedef {import('@exodus/dependency-types').Definition} Definition
* @typedef {import('@exodus/dependency-types').Feature} Feature
*/
/** @type {Definition} */
const batmobileDefinition = {
id: 'batmobile',
type: 'module',
// ...
}
const batmobileFeature = () => {
/** @type {Feature} */
const feature = {
id: 'batmobile',
definitions: [],
}
return feature
}
FAQs
Types for dependency-injection definitions and nodes
We found that @exodus/dependency-types demonstrated a not healthy version release cadence and project activity because the last version was released 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.