
Security News
pnpm 11.10 Hardens Registry Authentication to Block Token Redirection
pnpm 11.10 hardens registry auth to block token redirection, tightens pack-app and deploy, and makes the Rust port (v12) installable.
@taylorvance/tv-shared-dev
Advanced tools
Shared dev-time config and tooling helpers for Taylor Vance web projects.
@taylorvance/tv-shared-devShared dev-time config and tooling helpers for Taylor Vance web projects.
This package owns the reusable Node-side convention surface: ESLint, Prettier, and TypeScript baselines. It is intentionally narrower than a generic toolbox, but broad enough to grow into checks, doctors, codemods, and other non-runtime repo helpers later.
defineReactAppConfig, prettierConfig@taylorvance/tv-shared-dev/eslint/react-app@taylorvance/tv-shared-dev/prettier@taylorvance/tv-shared-dev/tsconfig/react-app.json@taylorvance/tv-shared-dev/tsconfig/vite-node.jsonimport defineReactAppConfig from '@taylorvance/tv-shared-dev/eslint/react-app';
export default [
...defineReactAppConfig({
extraIgnores: ['public/generated/**'],
}),
];
defineReactAppConfig() returns a flat-config array for Vite-style React apps and accepts:
extraIgnores: extra glob patterns in addition to the default dist/**Repo-specific overrides should stay local:
import { prettierConfig } from '@taylorvance/tv-shared-dev';
export default prettierConfig;
App config:
{
"extends": "@taylorvance/tv-shared-dev/tsconfig/react-app.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"types": ["vite/client", "vitest/globals"]
},
"include": ["src"]
}
Node-side Vite config:
{
"extends": "@taylorvance/tv-shared-dev/tsconfig/vite-node.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo"
},
"include": ["vite.config.ts"]
}
FAQs
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
pnpm 11.10 hardens registry auth to block token redirection, tightens pack-app and deploy, and makes the Rust port (v12) installable.

Security News
/Research
Socket uncovered 17 malicious npm and PyPI packages typosquatting Paysafe, Skrill, and Neteller SDKs to steal developer secrets.

Security News
Node.js is debating whether AI-driven security report volume warrants moving more vulnerability reports into public workflows.