UNPKG

@typescript-eslint/visitor-keys

Version:

Visitor keys used to help traverse the TypeScript-ESTree AST

73 lines 1.7 kB
{ "name": "@typescript-eslint/visitor-keys", "version": "8.59.3", "description": "Visitor keys used to help traverse the TypeScript-ESTree AST", "files": [ "dist", "!**/*.tsbuildinfo", "package.json", "README.md", "LICENSE" ], "type": "commonjs", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./package.json": "./package.json" }, "types": "./dist/index.d.ts", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "repository": { "type": "git", "url": "https://github.com/typescript-eslint/typescript-eslint.git", "directory": "packages/visitor-keys" }, "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, "homepage": "https://typescript-eslint.io", "license": "MIT", "keywords": [ "eslint", "typescript", "estree" ], "dependencies": { "eslint-visitor-keys": "^5.0.0", "@typescript-eslint/types": "8.59.3" }, "devDependencies": { "@vitest/coverage-v8": "^4.0.18", "eslint": "^10.0.0", "rimraf": "^5.0.10", "typescript": ">=4.8.4 <6.1.0", "vitest": "^4.0.18" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "nx": { "name": "visitor-keys", "includedScripts": [ "clean" ], "targets": { "lint": { "command": "eslint" } } }, "scripts": { "build": "pnpm exec nx build", "clean": "rimraf dist/ coverage/", "format": "pnpm -w run format", "lint": "pnpm -w exec nx lint", "test": "pnpm -w exec nx test", "typecheck": "pnpm -w exec nx typecheck" } }