Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@cprussin/transform-package-json
Advanced tools
A tool to help generate a package.json for publishing.
@cprussin/transform-package-json v1.3.1 • Docs
This package contains a CLI and an API for transforming a package.json into a new location while patching relative paths and removing development-only fields.
Use the package manager of your choice to install:
npm install --save-dev @cprussin/transform-package-json
pnpm add -D @cprussin/transform-package-json
yarn add -D @cprussin/transform-package-json
The CLI takes a path to an input package.json
and a path to an output
package.json
. It will then run the following transformations on the input,
saving the result to the output path:
devDependencies
and scripts
fields--removeType
is paassed, remove the type
field (for instance, you
may want to do this is you're transpiling ESM to CJS)package.json
points to
the same files as the old one. Fields that are updated are:
main
types
bin
exports
For example, you can use the CLI by calling:
transform-package-json --removeType ./package.json ./dist/package.json
Which will convert this package.json
:
{
name: "foo",
type: "module",
main: "./dist/index.js",
types: "./dist/index.d.js",
exports: {
import: "./dist/esm/index.mjs",
require: "./dist/cjs/index.js",
},
scripts: {
foo: "bar",
},
devDependencies: {
baz: "latest",
},
}
into this one:
{
name: "foo",
main: "./index.js",
types: "./index.d.js",
exports: {
import: "./esm/index.mjs",
require: "./cjs/index.js",
},
}
You can use transformPackageJson with an input path, output path, and
optional Options as a javascript equivalent to the CLI.
Alternatively, if you have a non-standard use case for loading/writing files,
you can call transformPackageJsonContents, which takes the parsed
contents of a package.json
and an optional Options and returns the
transformed contents.
FAQs
A tool to help generate a package.json for publishing.
The npm package @cprussin/transform-package-json receives a total of 1 weekly downloads. As such, @cprussin/transform-package-json popularity was classified as not popular.
We found that @cprussin/transform-package-json 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.