
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
pkg-typescript-plugin-prettier
Advanced tools
[](https://badge.fury.io/js/pkg-typescript-plugin-prettier) [](https://opensource.org/licenses/ISC) [![TypeScript
A pkg-typescript plugin for Prettier code formatting that provides automatic code formatting scripts, dependencies, and configuration.
This plugin adds Prettier code formatting functionality to pkg-typescript projects, including a format script, dependency management, and a preconfigured Prettier setup with import organization.
format - Formats all files in the project using Prettier with silent loggingAutomatically manages these Prettier-related dependencies:
prettier (v3.6.2) - Core Prettier formatting engineprettier-plugin-organize-imports (v4.1.0) - Plugin for organizing TypeScript/JavaScript importsProvides an opinionated Prettier configuration:
semi: false)Add this plugin to your pkg-typescript configuration:
export default {
plugins: 'prettier',
}
The plugin includes a default Prettier configuration, but you can override it by providing your own .prettierrc file in your project root.
{
"semi": false,
"printWidth": 80,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": false,
"plugins": ["prettier-plugin-organize-imports"]
}
yarn pkg:build # Build the plugin
yarn install # Install dependencies
ISC
FAQs
[](https://badge.fury.io/js/pkg-typescript-plugin-prettier) [](https://opensource.org/licenses/ISC) [
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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.