UNPKG

@typescript-eslint/typescript-estree

Version:

A parser that converts TypeScript source code into an ESTree compatible form

81 lines (80 loc) 2.17 kB
{ "name": "@typescript-eslint/typescript-estree", "version": "8.30.1", "description": "A parser that converts TypeScript source code into an ESTree compatible form", "files": [ "dist", "!*.tsbuildinfo", "README.md", "LICENSE" ], "type": "commonjs", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./package.json": "./package.json", "./use-at-your-own-risk": { "types": "./dist/use-at-your-own-risk.d.ts", "default": "./dist/use-at-your-own-risk.js" } }, "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/typescript-estree" }, "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, "homepage": "https://typescript-eslint.io/packages/typescript-estree", "license": "MIT", "keywords": [ "ast", "estree", "ecmascript", "javascript", "typescript", "parser", "syntax" ], "scripts": { "build": "tsc -b tsconfig.build.json", "clean": "tsc -b tsconfig.build.json --clean", "postclean": "rimraf dist/ coverage/", "format": "prettier --write \"./**/*.{ts,mts,cts,tsx,js,mjs,cjs,jsx,json,md,css}\" --ignore-path ../../.prettierignore", "lint": "npx nx lint", "test": "vitest --run --config=$INIT_CWD/vitest.config.mts", "check-types": "npx nx typecheck" }, "dependencies": { "@typescript-eslint/types": "8.30.1", "@typescript-eslint/visitor-keys": "8.30.1", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.0.1" }, "devDependencies": { "@vitest/coverage-v8": "^3.1.1", "glob": "*", "prettier": "^3.2.5", "rimraf": "*", "typescript": "*", "vitest": "^3.1.1" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }