@typescript-eslint/types 8.x
Use @typescript-eslint/types ^8 as the lightweight TypeScript-ESTree AST type package: runtime AST enums plus exported parser, project-service, and AST declarations. It is an internal package, not a parser, runner, CLI, or standalone AST-producing tool.
- For
@typescript-eslint/types@8.70.0- Verified
- 2026-09-08, 2 examples executed
- Package
@modootoday/pmcp-typescript-eslint-types@8.0.0
What it covers
- What this package is
- Runtime enums
- Parser option declarations
- v8 migration traps
- Do not copy an older AST parent assumption
- Use `projectService`, not the experimental older name
- Do not treat this package as the parser
- What this skill does not cover
One example from this skill
This is the skill's own text, not a summary of it. It runs: that is what verifying means here.
import assert from 'node:assert/strict';
import { AST_NODE_TYPES, AST_TOKEN_TYPES } from '@typescript-eslint/types';
assert.equal(AST_NODE_TYPES.Identifier, 'Identifier');
assert.equal(AST_NODE_TYPES.TSInterfaceDeclaration, 'TSInterfaceDeclaration');
assert.equal(AST_TOKEN_TYPES.Identifier, 'Identifier');
assert.equal(AST_TOKEN_TYPES.Punctuator, 'Punctuator');
What it did in the sandbox
Verifying this skill meant installing the package and running code against it with no route out. Nothing was observed. The full ledger lists every package examined, including the ones that never became a skill.
Nothing observed is not a finding of safety. It means one run, under one policy, produced nothing to report.
Getting it
With a subscription:
npx -y @modootoday/pmcp login
npx -y @modootoday/pmcp install @modootoday/pmcp-typescript-eslint-types
It installs as a dev dependency of your project, and the MCP server finds it there like any other skill.