This repository was archived by the owner on Mar 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.24 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.24 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@benhigham/eslint-config",
"version": "2.0.0",
"description": "My personal ESLint configurations.",
"license": "MIT",
"homepage": "https://github.com/benhigham/eslint-config#readme",
"bugs": {
"url": "https://github.com/benhigham/eslint-config/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/benhigham/eslint-config.git"
},
"funding": "https://github.com/sponsors/benhigham",
"author": {
"name": "Ben Higham",
"url": "https://benhigham.com"
},
"type": "module",
"exports": {
".": "./src/index.js",
"./browser": "./src/browser.js",
"./next": "./src/next.js",
"./react": "./src/react.js",
"./typescript": "./src/typescript.js",
"./plugins/graphql": "./src/plugins/graphql.js",
"./plugins/playwright": "./src/plugins/playwright.js",
"./plugins/tailwindcss": "./src/plugins/tailwindcss.js",
"./plugins/turbo": "./src/plugins/turbo.js"
},
"sideEffects": false,
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.32.1",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"changeset": "changeset",
"changeset:status": "changeset status",
"version": "changeset version",
"release": "changeset publish"
},
"files": [
"src"
],
"keywords": [
"check",
"checker",
"code",
"config",
"enforce",
"eslint",
"eslintconfig",
"hint",
"jscs",
"jshint",
"jslint",
"lint",
"linter",
"quality",
"standard",
"strict",
"style",
"styleguide",
"tslint",
"typescript",
"validate",
"verify"
],
"dependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
"@graphql-eslint/eslint-plugin": "^4.4.0",
"@next/eslint-plugin-next": "^16.0.0",
"@vitest/eslint-plugin": "^1.3.4",
"eslint-config-prettier": "^10.1.8",
"eslint-config-xo": "^0.50.0",
"eslint-config-xo-react": "^0.29.0",
"eslint-config-xo-typescript": "^9.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-better-tailwindcss": "^4.3.1",
"eslint-plugin-compat": "^7.0.1",
"eslint-plugin-depend": "^1.2.0",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-no-secrets": "^2.2.1",
"eslint-plugin-no-unsanitized": "^4.1.2",
"eslint-plugin-no-use-extend-native": "^0.7.2",
"eslint-plugin-playwright": "^2.2.2",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-testing-library": "^7.6.6",
"eslint-plugin-turbo": "^2.5.6",
"eslint-plugin-unicorn": "^61.0.2",
"globals": "^17.4.0"
},
"devDependencies": {
"@benhigham/commitlint-config": "^1.0.0",
"@benhigham/prettier-config": "^1.0.0",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.29.6",
"@commitlint/cli": "^20.4.3",
"eslint": "^9.34.0",
"eslint-find-rules": "^5.0.0",
"lefthook": "^2.1.2",
"prettier": "^3.6.2"
},
"peerDependencies": {
"eslint": ">=9.26.0"
},
"pnpm": {
"overrides": {
"minimatch": "^9.0.7"
}
}
}