
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@mmkal-public/rig
Advanced tools
All-in-one dev dependency - designed for packages within this repo, but in theory could be used externally too
A bundle with jest, eslint and tsconfig presets/dependencies/configs/passthrough bin scripts exposed.
These configs are very opinionated, and a work in progress. They make sense for me to use because I can change them at any time. They likely don't make sense for you to use, unless you are me.
Usage (note - these instructions assume you're using pnpm in a monorepo, but they should also work with a regular npm single-package repo. yarn/lerna monorepos with hoisting enabled may differ slightly, since hoisting means node_modules layout can vary):
pnpm install --save-dev @mmkal/rig
Use the passthrough bin script run in package.json to access tsc and eslint:
{
"scripts": {
"build": "run tsc -p .",
"lint": "run eslint --cache ."
}
}
module.exports = require('@mmkal/rig/.eslintrc')
{
"extends": "./node_modules/@mmkal/rig/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
"tsBuildInfoFile": "dist/buildinfo.json",
// convenient abstraction, however leaky: the helper package exposes node and jest types
// but they're tucked away in a nested node_modules folder. This lets them be used
"typeRoots": ["node_modules/@mmkal/rig/node_modules/@types"]
},
"exclude": ["node_modules", "dist"]
}
module.exports = require('@mmkal/rig/jest.config')
Webpack preferred over parcel. It's customisable (in most projects, intimidatingly so), but the rig package attempts to abstract that away as much as possible. This will give you a config for a bundled commonjs module:
module.exports = require('@mmkal/rig/webpack.config').with(__filename)
That should be good as a serverless function entrypoint or similar. For web/a cli program, you'd have to use ... to extend it. Or maybe, eventually this library should export a few different config options (while trying to avoid the inner platform effect).
FAQs
All-in-one dev dependency - designed for packages within this repo, but in theory could be used externally too
The npm package @mmkal-public/rig receives a total of 2 weekly downloads. As such, @mmkal-public/rig popularity was classified as not popular.
We found that @mmkal-public/rig 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.