-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) Β· 1.93 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) Β· 1.93 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-you-might-not-need-an-effect",
"version": "1.0.1",
"description": "ESLint plugin to catch unnecessary React effects for simpler, faster, safer code.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"react"
],
"homepage": "https://github.com/nickjvandyke/eslint-plugin-react-you-might-not-need-an-effect",
"bugs": {
"url": "https://github.com/nickjvandyke/eslint-plugin-react-you-might-not-need-an-effect/issues"
},
"license": "MIT",
"author": "Nick van Dyke",
"funding": "https://github.com/sponsors/nickjvandyke",
"files": [
"dist"
],
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/nickjvandyke/eslint-plugin-react-you-might-not-need-an-effect.git"
},
"scripts": {
"build": "tsdown",
"typecheck": "tsgo",
"lint": "eslint",
"test": "mocha --recursive ./src ./test",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"globals": "^16.2.0"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@eslint/js": "^9.28.0",
"@typescript/native-preview": "^7.0.0-dev.20260511.1",
"attw": "^1.0.0",
"eslint": "^9.20.1",
"eslint-plugin-eslint-plugin": "^6.4.0",
"eslint-plugin-n": "^17.17.0",
"lint-staged": "^16.1.0",
"mocha": "11.1.0",
"prettier": "^3.5.3",
"publint": "^0.3.20",
"simple-git-hooks": "^2.13.0",
"tsdown": "^0.22.0"
},
"peerDependencies": {
"eslint": ">=8.40.0"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "yarn@4.12.0",
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"*": [
"prettier --write"
]
}
}