-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.52 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.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
{
"name": "@rushstack/eslint-patch",
"version": "1.16.1",
"description": "Enhance ESLint with better support for large scale monorepos",
"main": "./lib-commonjs/usage.js",
"module": "./lib-esm/usage.js",
"exports": {
".": {
"node": "./lib-commonjs/usage.js",
"import": "./lib-esm/usage.js",
"require": "./lib-commonjs/usage.js"
},
"./modern-module-resolution": {
"node": "./lib-commonjs/modern-module-resolution.js",
"import": "./lib-esm/modern-module-resolution.js",
"require": "./lib-commonjs/modern-module-resolution.js"
},
"./custom-config-package-names": {
"node": "./lib-commonjs/custom-config-package-names.js",
"import": "./lib-esm/custom-config-package-names.js",
"require": "./lib-commonjs/custom-config-package-names.js"
},
"./eslint-bulk-suppressions": {
"node": "./lib-commonjs/eslint-bulk-suppressions/index.js",
"import": "./lib-esm/eslint-bulk-suppressions/index.js",
"require": "./lib-commonjs/eslint-bulk-suppressions/index.js"
},
"./lib/*": {
"types": "./lib-dts/*.d.ts",
"node": "./lib-commonjs/*.js",
"import": "./lib-esm/*.js",
"require": "./lib-commonjs/*.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"lib/*": [
"lib-dts/*"
]
}
},
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "eslint/eslint-patch"
},
"homepage": "https://rushstack.io",
"scripts": {
"build": "heft build --clean",
"_phase:build": "heft run --only build -- --clean"
},
"keywords": [
"eslintrc",
"config",
"module",
"resolve",
"resolver",
"plugin",
"relative",
"package",
"bulk",
"suppressions",
"monorepo",
"monkey",
"patch"
],
"devDependencies": {
"@rushstack/heft": "1.2.7",
"@types/eslint-8": "npm:@types/eslint@8.56.10",
"@types/eslint-9": "npm:@types/eslint@9.6.1",
"@typescript-eslint/types": "~8.56.1",
"decoupled-local-node-rig": "workspace:*",
"eslint-8": "npm:eslint@~8.57.0",
"eslint-9": "npm:eslint@~9.25.1",
"eslint": "~9.37.0",
"typescript": "~5.8.2"
},
"sideEffects": [
"lib-esm/modern-module-resolution.js",
"lib-esm/custom-config-package-names.js",
"lib-esm/eslint-bulk-suppressions/index.js",
"lib-commonjs/modern-module-resolution.js",
"lib-commonjs/custom-config-package-names.js",
"lib-commonjs/eslint-bulk-suppressions/index.js"
]
}