
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@startracex/dev-config
Advanced tools
npm i -D @startracex/dev-config
biome.json
{
// "extends": ["@startracex/dev-config/biome-v1"], // Biome v1
"extends": ["@startracex/dev-config/biome"]
}
dprint has two presets, typescript and prettier, they cannot coexist.
All presets has no print width limit.
dprint.json
{
"extends": ["./node_modules/@startracex/dev-config/dprint.json"],
"typescript": {
"lineWidth": 120
},
"plugins": [
/* run `dprint config add typescript` */
]
}
Prettier also format markdown, json etc, which can be suppressed by add markdown and json plugins.
dprint.json
{
"extends": ["./node_modules/@startracex/dev-config/dprint-prettier.json"],
"prettier": {
"printWidth": 120
},
"json": {},
"plugins": [
/* run `dprint config add prettier && dprint config add json` */
]
}
This preset only contains rules.
This preset has no print width or indent limit.
eslint.config.js
import stylistic from "@stylistic/eslint-plugin";
import stylisticRules from "@startracex/dev-config/stylistic";
export default [
{
plugins: {
"@stylistic": stylistic,
},
rules: {
...stylisticRules,
},
},
];
.eslintrc
{
"extends": ["./node_modules/@startracex/dev-config/eslint.config.js"],
"plugins": ["@stylistic"]
}
This preset has no print width limit.
prettier.config.js
import config from "@startracex/dev-config/prettier";
export default {
...config,
printWidth: 120,
};
package.json
{
"prettier": "@startracex/dev-config/prettier"
}
tsconfig.json
{
"extends": "@startracex/dev-config/tsconfig/lib"
}
tsconfig.json
{
"extends": "@startracex/dev-config/tsconfig/app"
}
FAQs
A set of preset configurations for development
We found that @startracex/dev-config 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.