-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.72 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.72 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
{
"name": "@dephub/eslint-react",
"type": "module",
"version": "1.0.0",
"description": "Opinionated modern ESLint configuration for React projects.",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"prepublishOnly": "pnpm clean && pnpm check-types && pnpm build && pnpm lint",
"release": "pnpm publish",
"docs": "lineo md 'src/**/*.ts' --outFile code.md --outDir temp",
"check-types": "tsc --noEmit",
"lint": "eslint . --fix --max-warnings 0",
"fmt": "prettier --write .",
"clean": "rm -rf dist",
"build": "vite build",
"dev": "vite build -w"
},
"keywords": [
"eslint-react",
"lint",
"eslint",
"eslint-config",
"react",
"typescript",
"ts",
"config",
"preset",
"linter",
"code-quality"
],
"author": {
"name": "Estarlin R",
"email": "dev@estarlincito.com",
"url": "https://estarlincito.com"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"license": "MIT",
"homepage": "https://github.com/dephub-js/eslint-react#readme",
"repository": {
"type": "git",
"url": "https://github.com/dephub-js/eslint-react.git"
},
"bugs": {
"url": "https://github.com/dephub-js/eslint-react/issues"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.30.3",
"dependencies": {
"@dephub/eslint-ts": "^1.0.1",
"@types/eslint": "^9.6.1",
"eslint": "^10.0.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1"
},
"devDependencies": {
"@dephub/glob": "^1.0.1",
"@dephub/path": "^1.0.1",
"@types/node": "^25.3.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"prettier": "^3.8.1",
"vite-plugin-dts": "^4.5.4"
}
}