UNPKG

2.13 kBJSONView Raw
1{
2 "name": "@typescript-eslint/parser",
3 "version": "6.14.0",
4 "description": "An ESLint custom parser which leverages TypeScript ESTree",
5 "files": [
6 "dist",
7 "_ts4.3",
8 "README.md",
9 "LICENSE"
10 ],
11 "type": "commonjs",
12 "exports": {
13 ".": {
14 "types": "./dist/index.d.ts",
15 "default": "./dist/index.js"
16 },
17 "./package.json": "./package.json"
18 },
19 "engines": {
20 "node": "^16.0.0 || >=18.0.0"
21 },
22 "repository": {
23 "type": "git",
24 "url": "https://github.com/typescript-eslint/typescript-eslint.git",
25 "directory": "packages/parser"
26 },
27 "bugs": {
28 "url": "https://github.com/typescript-eslint/typescript-eslint/issues"
29 },
30 "license": "BSD-2-Clause",
31 "keywords": [
32 "ast",
33 "ecmascript",
34 "javascript",
35 "typescript",
36 "parser",
37 "syntax",
38 "eslint"
39 ],
40 "scripts": {
41 "build": "tsc -b tsconfig.build.json",
42 "postbuild": "downlevel-dts dist _ts4.3/dist --to=4.3",
43 "clean": "tsc -b tsconfig.build.json --clean",
44 "postclean": "rimraf dist && rimraf _ts4.3 && rimraf coverage",
45 "format": "prettier --write \"./**/*.{ts,mts,cts,tsx,js,mjs,cjs,jsx,json,md,css}\" --ignore-path ../../.prettierignore",
46 "lint": "npx nx lint",
47 "test": "jest --coverage",
48 "typecheck": "tsc -p tsconfig.json --noEmit"
49 },
50 "peerDependencies": {
51 "eslint": "^7.0.0 || ^8.0.0"
52 },
53 "dependencies": {
54 "@typescript-eslint/scope-manager": "6.14.0",
55 "@typescript-eslint/types": "6.14.0",
56 "@typescript-eslint/typescript-estree": "6.14.0",
57 "@typescript-eslint/visitor-keys": "6.14.0",
58 "debug": "^4.3.4"
59 },
60 "devDependencies": {
61 "@types/glob": "*",
62 "downlevel-dts": "*",
63 "glob": "*",
64 "jest": "29.7.0",
65 "prettier": "^3.0.3",
66 "rimraf": "*",
67 "typescript": "*"
68 },
69 "peerDependenciesMeta": {
70 "typescript": {
71 "optional": true
72 }
73 },
74 "funding": {
75 "type": "opencollective",
76 "url": "https://opencollective.com/typescript-eslint"
77 },
78 "typesVersions": {
79 "<4.7": {
80 "*": [
81 "_ts4.3/*"
82 ]
83 }
84 },
85 "gitHead": "c7d702f4315f66c75ae16a4b559ef5b4705bb804"
86}