
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.
Chromepack is a small tool to simplify deployment of Chrome Extensions.
$ npm install -g chromepack
$ chromepack -c chromepack.config.json
Simply run chromepack in a directory containing a chromepack.config.json file, or use chromepack -c to specify a path to your chromepack.config.json file.
Run chromepack -h to see all options.
The following are the options for a chromepack.config.json file:
| Field | Type | Description |
|---|---|---|
manifest | string | Specify the path to the manifest.json |
output.name | string | The name of the .zip archive that is generated. Supports formatting of [name], [version], [timestamp] variables. |
output.path | string | The path to the directory to generate the .zip archive in. |
src | Array<string> | An array of files to be included in the archive, along with files calculated from the manifest.json. Supports glob notation. |
tasks.pre | Array<string> | A array of commands to run BEFORE packing |
tasks.post | Array<string> | A array of commands to run AFTER packing |
Example:
{
"manifest": "./manifest.json",
"output": {
"name": "[name].[version]"
},
"src": [ "!dist/*.map" ],
"tasks": {
"pre": [ "npm run build" ]
}
}
FAQs
A tool for packaging Chrome Extensions
We found that chromepack 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
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.