-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
148 lines (148 loc) · 4.8 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "eslint-import-resolver-typescript",
"version": "4.2.5",
"type": "module",
"description": "This plugin adds `TypeScript` support to `eslint-plugin-import`",
"repository": "https://github.com/import-js/eslint-import-resolver-typescript",
"author": "Alex Gorbatchev <[email protected]>",
"contributors": [
"JounQin <[email protected]> (https://www.1stG.me)"
],
"funding": "https://opencollective.com/eslint-import-resolver-typescript",
"license": "ISC",
"packageManager": "[email protected]",
"engines": {
"node": "^16.17.0 || >=18.6.0"
},
"main": "lib/index.cjs",
"module": "lib/index.js",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"module-sync": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./index.d.cts",
"default": "./lib/index.cjs"
},
"default": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"./package.json": "./package.json"
},
"types": "lib/index.d.ts",
"files": [
"lib",
"!**/*.tsbuildinfo"
],
"keywords": [
"typescript",
"eslint",
"import",
"resolver",
"plugin"
],
"scripts": {
"build": "run-p -c 'build:*'",
"build:r": "r -f cjs",
"build:ts": "tsc -b",
"eslint": "ESLINT_USE_FLAT_CONFIG=false eslint",
"lint": "run-p 'lint:*'",
"lint:es": "eslint . --cache",
"lint:tsc": "tsc -b --noEmit",
"prepare": "simple-git-hooks && yarn-berry-deduplicate && cd tests/nestedPackageJson && yarn || exit 0",
"release": "clean-pkg-json && changeset publish",
"test": "run-p 'test:*'",
"test:absoluteAlias": "yarn eslint --ext ts,tsx tests/absoluteAlias",
"test:dotInclude": "yarn eslint --ext ts,tsx tests/dotInclude --ignore-pattern \"!.dot\"",
"test:dotPaths": "yarn eslint --ext ts,tsx tests/dotPaths --ignore-pattern \"!.dot\"",
"test:dotProject": "yarn eslint --ext ts,tsx tests/dotProject --ignore-pattern \"!.dot\"",
"test:importXResolverV3": "eslint --config=tests/importXResolverV3/eslint.config.cjs tests/importXResolverV3",
"test:multipleEslintrcs": "yarn eslint --ext ts,tsx tests/multipleEslintrcs",
"test:multipleTsconfigs": "yarn eslint --ext ts,tsx tests/multipleTsconfigs",
"test:nearestTsconfig": "yarn eslint --ext ts,tsx tests/nearestTsconfig",
"test:nestedPackageJson": "yarn eslint --ext ts,tsx tests/nestedPackageJson",
"test:unit": "vitest --run",
"test:withJsExtension": "node tests/withJsExtension/test.js && yarn eslint --ext ts,tsx tests/withJsExtension",
"test:withJsconfig": "yarn eslint --ext js tests/withJsconfig",
"test:withPaths": "yarn eslint --ext ts,tsx tests/withPaths",
"test:withPathsAndNestedBaseUrl": "yarn eslint --ext ts,tsx tests/withPathsAndNestedBaseUrl",
"test:withQuerystring": "yarn eslint --ext ts,tsx tests/withQuerystring",
"test:withoutPaths": "yarn eslint --ext ts,tsx tests/withoutPaths",
"typecov": "type-coverage"
},
"peerDependencies": {
"eslint": "*",
"eslint-plugin-import": "*",
"eslint-plugin-import-x": "*"
},
"peerDependenciesMeta": {
"eslint-plugin-import": {
"optional": true
},
"eslint-plugin-import-x": {
"optional": true
}
},
"dependencies": {
"debug": "^4.4.0",
"get-tsconfig": "^4.10.0",
"is-bun-module": "^2.0.0",
"stable-hash": "^0.0.5",
"tinyglobby": "^0.2.12",
"unrs-resolver": "^1.3.2"
},
"devDependencies": {
"@1stg/common-config": "^11.1.0",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^19.8.0",
"@mozilla/glean": "^5.0.3",
"@pkgr/rollup": "^6.0.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/debug": "^4.1.12",
"@types/node": "^22.13.14",
"@types/pnpapi": "^0.0.5",
"@types/unist": "^3.0.3",
"@vitest/coverage-v8": "3.0.9",
"clean-pkg-json": "^1.2.1",
"dummy.js": "link:dummy.js",
"eslint": "^9.23.0",
"eslint-import-resolver-typescript": "link:.",
"eslint-plugin-import-x": "^4.9.3",
"lint-staged": "^15.5.0",
"npm-run-all2": "^7.0.2",
"path-serializer": "^0.3.4",
"prettier": "^3.5.3",
"react": "^19.0.0",
"simple-git-hooks": "^2.12.1",
"size-limit": "^11.2.0",
"size-limit-preset-node-lib": "^0.3.0",
"tinyexec": "^1.0.1",
"type-coverage": "^2.29.7",
"typescript": "~5.8.2",
"vitest": "^3.0.9",
"yarn-berry-deduplicate": "^6.1.1"
},
"resolutions": {
"eslint-import-resolver-typescript": "link:.",
"prettier": "^3.5.3"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNonNullAssertion": true,
"ignoreCatch": true,
"strict": true,
"update": true
}
}