-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.92 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
{
"name": "eslint-plugin-react-debug",
"version": "5.8.13",
"description": "ESLint React's ESLint plugin for debugging related rules.",
"keywords": [
"react",
"debug",
"eslint",
"eslint-react",
"eslint-plugin",
"eslint-plugin-react-debug"
],
"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",
"directory": "plugins/eslint-plugin-react-debug"
},
"license": "MIT",
"author": "Rel1cx",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"lint:publish": "publint",
"lint:ts": "tsl",
"publish": "pnpm run build && pnpm run lint:publish"
},
"dependencies": {
"@eslint-react/ast": "workspace:*",
"@eslint-react/core": "workspace:*",
"@eslint-react/eslint": "workspace:*",
"@eslint-react/jsx": "workspace:*",
"@eslint-react/shared": "workspace:*",
"@typescript-eslint/scope-manager": "^8.60.1",
"@typescript-eslint/types": "^8.60.1",
"@typescript-eslint/utils": "^8.60.1",
"ts-pattern": "^5.9.0"
},
"devDependencies": {
"@local/configs": "workspace:*",
"@local/eff": "workspace:*",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/rule-tester": "^8.60.1",
"dedent": "^1.7.2",
"eslint": "^10.4.1",
"tsdown": "^0.22.2",
"typescript": "6.0.3"
},
"peerDependencies": {
"eslint": "^10.3.0",
"typescript": "*"
},
"engines": {
"node": ">=22.0.0"
},
"inlinedDependencies": {
"@local/eff": "workspace:*"
}
}