-
-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.52 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.52 KB
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
{
"name": "eslint-import-resolver-typescript",
"version": "4.4.4",
"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 <alex.gorbatchev@gmail.com>",
"maintainers": [
"JounQin <admin@1stg.me> (https://www.1stG.me)"
],
"funding": "https://opencollective.com/eslint-import-resolver-typescript",
"license": "ISC",
"packageManager": "yarn@4.9.2",
"engines": {
"node": "^16.17.0 || >=18.6.0"
},
"main": "lib/index.cjs",
"types": "lib/index.d.cts",
"module": "lib/index.js",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"lib",
"!**/*.tsbuildinfo"
],
"keywords": [
"typescript",
"eslint",
"import",
"resolver",
"plugin"
],
"scripts": {
"build": "run-p -c 'build:*'",
"build:ts": "tsc -p src",
"build:tsdown": "tsdown --no-clean -d lib -f cjs src/index.ts",
"clean": "premove coverage lib .eslintcache",
"format": "prettier --write .",
"lint": "run-p 'lint:*'",
"lint:es": "eslint . --cache",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks && yarn-berry-deduplicate || exit 0",
"release": "clean-pkg-json && changeset publish",
"test": "node tests/e2e/withJsExtension/test.cjs && vitest run",
"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.1",
"eslint-import-context": "^0.1.8",
"get-tsconfig": "^4.10.1",
"is-bun-module": "^2.0.0",
"stable-hash-x": "^0.2.0",
"tinyglobby": "^0.2.14",
"unrs-resolver": "^1.7.11"
},
"devDependencies": {
"@1stg/common-config": "^14.1.0",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.4",
"@commitlint/cli": "^19.8.1",
"@mozilla/glean": "^5.0.4",
"@pkgr/core": "^0.3.3",
"@total-typescript/ts-reset": "^0.6.1",
"@types/debug": "^4.1.12",
"@types/node": "^22.15.30",
"@types/pnpapi": "^0.0.5",
"@types/unist": "^3.0.3",
"@vitest/coverage-v8": "^3.2.2",
"@vitest/eslint-plugin": "^1.2.1",
"clean-pkg-json": "^1.3.0",
"dummy.js": "link:dummy.js",
"eslint": "^9.28.0",
"eslint-import-resolver-typescript": "workspace:*",
"eslint-plugin-import-x": "^4.15.1",
"nano-staged": "^0.8.0",
"npm-run-all2": "^8.0.4",
"path-serializer": "^0.5.0",
"premove": "^4.0.0",
"prettier": "^3.5.3",
"react": "^19.1.0",
"simple-git-hooks": "^2.13.0",
"size-limit": "^11.2.0",
"size-limit-preset-node-lib": "^0.4.0",
"tinyexec": "^1.0.1",
"tsdown": "^0.12.7",
"type-coverage": "^2.29.7",
"typescript": "^5.8.3",
"vitest": "^3.2.2",
"yarn-berry-deduplicate": "^6.1.3"
},
"resolutions": {
"eslint-import-resolver-typescript": "workspace:*",
"prettier": "^3.5.3"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNonNullAssertion": true,
"ignoreCatch": true,
"strict": true,
"update": true
}
}