forked from rEl1cx/eslint-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
151 lines (151 loc) · 5.89 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
149
150
151
{
"name": "@eslint-react/monorepo",
"version": "1.7.0",
"private": true,
"description": "A series of composable ESLint rules for libraries and frameworks that use React as a UI runtime.",
"keywords": [
"eslint",
"eslint-plugin",
"eslint-react",
"react",
"ts",
"tsx",
"typescript",
"typescript-eslint",
"typescript-react"
],
"homepage": "https://github.com/rel1cx/eslint-react",
"bugs": {
"url": "https://github.com/rel1cx/eslint-react/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Rel1cx/eslint-react"
},
"license": "MIT",
"author": "Eva1ent<[email protected]>",
"scripts": {
"build": "pnpm run update:version && turbo build --filter=\"./packages/**\"",
"build:all": "pnpm run build && pnpm run build:docs && pnpm run build:website",
"build:docs": "turbo build:docs --filter=\"./packages/**\" && pnpm run update:readme",
"build:force": "turbo build --force --filter=\"./packages/**\"",
"build:website": "pnpm -F \"./website\" run build",
"format:check": "dprint check",
"format:package-json": "bun run --bun ./scripts/format-package-json.ts",
"format:write": "dprint fmt",
"inspect:bundles": "bun run --bun ./scripts/inspect-bundles.ts",
"inspect:deps": "skott -e .ts",
"inspect:eslint-config": "eslint --print-config ./packages > eslint-config.json",
"lint": "pnpm run lint:spell && pnpm run lint:deps && pnpm run lint:type && pnpm run lint:ts && pnpm run lint:publish && pnpm run lint:examples && pnpm run lint:website",
"lint:deps": "skott -m file-tree -e .ts -s",
"lint:examples": "pnpm -r -F \"./examples/*\" run --parallel lint",
"lint:publish": "pnpm -r run --parallel lint:publish",
"lint:spell": "cspell lint --relative --no-progress \"**\"",
"lint:ts": "eslint --cache .",
"lint:type": "pnpm -r run --parallel lint:type",
"lint:website": "pnpm -F \"./website\" run lint",
"prepare": "lefthook install && pnpm run build",
"test": "vitest --run --logHeapUsage",
"update:deps": "pnpm up --latest -r && pnpm install --fix-lockfile && pnpm prune",
"update:readme": "bun run --bun ./scripts/update-readme.ts",
"update:version": "bun run --bun ./scripts/update-version.ts && pnpm run format:package-json"
},
"devDependencies": {
"@changesets/cli": "2.27.7",
"@eslint/js": "9.8.0",
"@swc/core": "1.7.3",
"@tsconfig/node22": "22.0.0",
"@tsconfig/strictest": "2.0.5",
"@types/bun": "1.1.6",
"@types/node": "22.0.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@typescript-eslint/rule-tester": "^7.18.0",
"@vitest/ui": "2.0.4",
"bun": "1.1.21",
"bundle-require": "^5.0.0",
"code-block-writer": "13.0.2",
"cspell": "8.12.1",
"dprint": "0.47.2",
"effect": "3.5.9",
"esbuild": "0.23.0",
"eslint": "^9.8.0",
"eslint-config-flat-gitignore": "0.1.8",
"eslint-import-resolver-oxc": "^0.2.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-eslint-plugin": "6.2.0",
"eslint-plugin-functional": "6.6.3",
"eslint-plugin-import-x": "3.1.0",
"eslint-plugin-jsdoc": "48.9.2",
"eslint-plugin-math": "0.6.0",
"eslint-plugin-perfectionist": "3.0.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unicorn": "55.0.0",
"eslint-plugin-vitest": "0.5.4",
"eslint-plugin-yml": "^1.14.0",
"fast-equals": "5.0.1",
"knip": "^5.27.0",
"lefthook": "^1.7.11",
"markdownlint": "0.34.0",
"pathe": "1.1.2",
"publint": "0.2.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remeda": "^2.6.0",
"skott": "0.35.2",
"sort-package-json": "2.10.0",
"superbytes": "2.0.1",
"ts-pattern": "^5.2.0",
"tsup": "8.2.3",
"turbo": "2.0.9",
"type-fest": "4.23.0",
"typedoc": "0.26.5",
"typedoc-plugin-markdown": "4.2.3",
"typedoc-plugin-rename-defaults": "0.7.1",
"typescript": "^5.5.4",
"vitest": "2.0.4"
},
"packageManager": "[email protected]",
"engines": {
"bun": ">=1.0.15",
"node": ">=18.18.0"
},
"pnpm": {
"overrides": {
"@types/node": "22.0.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"array-includes": "npm:@nolyfill/array-includes@^1",
"array.prototype.findlast": "npm:@nolyfill/array.prototype.findlast@^1",
"array.prototype.findlastindex": "npm:@nolyfill/array.prototype.findlastindex@^1",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1",
"array.prototype.toreversed": "npm:@nolyfill/array.prototype.toreversed@^1",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@^1",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@^1",
"esbuild": "0.23.0",
"eslint": "^9.8.0",
"function-bind": "npm:@nolyfill/function-bind@^1",
"has": "npm:@nolyfill/has@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"object.assign": "npm:@nolyfill/object.assign@^1",
"object.entries": "npm:@nolyfill/object.entries@^1",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1",
"object.groupby": "npm:@nolyfill/object.groupby@^1",
"object.hasown": "npm:@nolyfill/object.hasown@^1",
"object.values": "npm:@nolyfill/object.values@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1",
"ts-api-utils": "^1.3.0",
"typedarray": "npm:@nolyfill/typedarray@^1",
"typescript": "^5.5.4"
},
"overridesMeta": {
"esbuild": "Ensure that the esbuild has single version across the monorepo.",
"eslint": "Ensure that the eslint has single version across the monorepo.",
"typescript": "Ensure that the typescript has single version across the monorepo."
}
}
}