-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.64 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
{
"name": "@eslint-react/monorepo",
"version": "2.9.0",
"private": true,
"description": "Monorepo for eslint-plugin-react-[x, dom, rsc, web-api, hooks-extra, naming-convention].",
"keywords": [
"react",
"eslint",
"eslint-react",
"eslint-plugin",
"eslint-plugin-react-x",
"eslint-plugin-react-dom",
"eslint-plugin-react-rsc",
"eslint-plugin-react-web-api",
"eslint-plugin-react-hooks-extra",
"eslint-plugin-react-naming-convention"
],
"homepage": "https://github.com/Rel1cx/eslint-react",
"bugs": {
"url": "https://github.com/Rel1cx/eslint-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rel1cx/eslint-react.git"
},
"license": "MIT",
"author": "Rel1cx",
"type": "module",
"scripts": {
"build": "pnpm run update:all && pnpm run build:pkgs && pnpm run build:packages && pnpm run build:docs",
"build:docs": "pnpm -r --stream --filter \"./packages/**\" run build:docs",
"build:packages": "pnpm -r --stream --filter \"./packages/**\" run build",
"build:pkgs": "pnpm -r --stream --filter \"./.pkgs/*\" run build",
"build:website": "pnpm run update:website && pnpm -F \"./apps/website\" run build",
"format:check": "dprint check",
"format:write": "dprint fmt",
"lint": "pnpm run lint:deps && pnpm run lint:publish && pnpm run lint:ts && pnpm run lint:es && pnpm run lint:examples",
"lint:deps": "skott -m file-tree -e .ts -s",
"lint:es": "eslint . --max-warnings 20 --concurrency=auto",
"lint:examples": "pnpm m -F \"./examples/*\" run lint",
"lint:mdx": "mdxlint **/*.mdx -o",
"lint:publish": "pnpm m run lint:publish",
"lint:ts": "pnpm m run lint:ts",
"lint:website": "pnpm -F \"./apps/website\" run lint",
"prepare": "pnpm run build",
"sort:package-json": "pnpm m exec sort-package-json -q package.json && dprint fmt",
"test": "vitest run --logHeapUsage",
"update:all": "pnpm run update:version && pnpm run update:readme && pnpm run update:website",
"update:readme": "tsx ./scripts/update-readme.ts",
"update:version": "tsx ./scripts/update-version.ts",
"update:website": "tsx ./scripts/update-website.ts",
"verify:rules-metas": "tsx ./scripts/verify-rules-metas.ts"
},
"devDependencies": {
"@effect/language-service": "^0.72.0",
"@effect/platform": "^0.94.2",
"@effect/platform-node": "^0.104.1",
"@eslint/compat": "^2.0.2",
"@local/configs": "workspace:*",
"@local/function-rules": "workspace:*",
"@radix-ui/react-toast": "^1.2.15",
"@tsconfig/node22": "^22.0.5",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^25.2.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "^8.54.0",
"@typescript-eslint/rule-tester": "^8.54.0",
"@typescript-eslint/types": "^8.54.0",
"ansis": "^4.2.0",
"dedent": "^1.7.1",
"dprint": "^0.51.1",
"effect": "^3.19.15",
"eslint": "^9.39.2",
"eslint-plugin-fast-import": "^1.10.0",
"eslint-plugin-function-rule": "^0.3.1",
"mdxlint": "^1.0.0",
"publint": "^0.3.17",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"remark-frontmatter": "5.0.0",
"remark-gfm": "^4.0.1",
"skott": "^0.35.7",
"sort-package-json": "^3.6.1",
"tinyglobby": "^0.2.15",
"ts-pattern": "^5.9.0",
"tsdown": "^0.20.1",
"tsx": "^4.21.0",
"type-fest": "^5.4.3",
"typedoc": "^0.28.16",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-plugin-mdn-links": "^5.1.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">=24.0.0"
}
}