-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (102 loc) · 2.94 KB
/
package.json
File metadata and controls
104 lines (102 loc) · 2.94 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
102
103
104
{
"name": "eslint-plugin-react-no-manual-memo",
"version": "1.0.4",
"description": "ESLint plugin for React Compiler users to flag manual memoization (useMemo, useCallback, React.memo), reminding you to let the compiler do its thing ✨",
"author": "BellCube",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BellCubeDev/eslint-plugin-react-no-manual-memo.git"
},
"keywords": [
"react", "compiler", "react-compiler",
"eslint", "plugin", "linting",
"memoization", "memo",
"React.memo",
"hooks", "react-hooks", "useMemo", "useCallback",
"optimization", "performance",
"refactoring"
],
"bugs": {
"url": "https://github.com/BellCubeDev/eslint-plugin-react-no-manual-memo/issues"
},
"type": "module",
"files": [
"build",
"src",
"!src/__tests__"
],
"types": "build/legacy/index.d.ts",
"main": "build/legacy/index.cjs",
"module": "build/legacy/index.js",
"react-native": "src/index.ts",
"exports": {
".": {
"@tanstack/custom-condition": "./src/index.ts",
"import": {
"types": "./build/modern/index.d.ts",
"default": "./build/modern/index.js"
},
"require": {
"types": "./build/modern/index.d.cts",
"default": "./build/modern/index.cjs"
}
},
"./package.json": "./package.json"
},
"sideEffects": false,
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0"
},
"packageManager": "pnpm@10.18.0+sha512.e804f889f1cecc40d572db084eec3e4881739f8dec69c0ff10d2d1beff9a4e309383ba27b5b750059d7f4c149535b6cd0d2cb1ed3aeb739239a4284a68f40cfa",
"scripts": {
"test": "pnpm run /^test:[^:]+$/",
"clean": "premove ./dist ./coverage ./dist-ts",
"compile": "tsc --build",
"test:eslint": "eslint --concurrency=auto ./src",
"test:types": "tsc --build",
"test:lib": "vitest",
"test:lib:dev": "pnpm run test:lib --watch",
"test:build": "pnpm run build && publint --strict && attw --pack",
"build": "tsup --tsconfig tsconfig.prod.json",
"docgen": "pnpm run build && eslint-doc-generator",
"docgen:check": "pnpm run docgen --check"
},
"dependencies": {
"@typescript-eslint/utils": "^8.45.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@cspell/eslint-plugin": "^9.2.1",
"@eslint/compat": "^1.4.0",
"@tanstack/config": "^0.20.3",
"@types/node": "^24.6.2",
"@typescript-eslint/parser": "^8.45.0",
"@typescript-eslint/rule-tester": "^8.45.0",
"@vitest/coverage-istanbul": "3.2.4",
"@vitest/eslint-plugin": "^1.3.15",
"esbuild-plugin-file-path-extensions": "^2.1.4",
"eslint": "^9.37.0",
"eslint-doc-generator": "^2.2.2",
"eslint-plugin-eslint-plugin": "^7.0.0",
"husky": "^9.1.7",
"premove": "^4.0.0",
"publint": "^0.3.13",
"tinyglobby": "^0.2.15",
"tsup": "^8.5.0",
"typescript": "5.9.3",
"vite": "^7.1.9",
"vitest": "3.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"msw",
"unrs-resolver"
],
"patchedDependencies": {
"eslint-doc-generator": "patches/eslint-doc-generator.patch"
}
}
}