-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.95 KB
/
package.json
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
{
"name": "@basemind/eslint-config-next",
"version": "0.2.0",
"description": "Comprehensive ESLint config for NextJS projects",
"main": "dist/index.js",
"type": "module",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"types": "dist/index.d.ts",
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/basemind-ai/eslint-config-next.git"
},
"bugs": {
"url": "https://github.com/basemind-ai/eslint-config-next/issues"
},
"homepage": "https://github.com/basemind-ai/eslint-config-next#readme",
"keywords": [
"eslint",
"typescript",
"linter",
"code-quality",
"react"
],
"author": "Na'aman Hirschfeld",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"format": "biome format --write .",
"lint": "eslint --fix 'index.ts'",
"prepare": "husky",
"prepublish": "pnpm run build"
},
"lint-staged": {
"*.json": "biome format --write",
"*.ts": [
"biome format --write",
"eslint --fix --no-warn-ignored"
]
},
"dependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@types/eslint__js": "^8.42.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-n": "17.10.2",
"eslint-plugin-oxlint": "^0.9.3",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unicorn": "55.0.0",
"eslint-plugin-unused-imports": "^4.1.3",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.9.0",
"typescript-eslint": "^8.5.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@commitlint/config-conventional": "^19.4.1",
"@types/eslint__eslintrc": "^2.1.2",
"eslint": "^9.10.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.2"
},
"peerDependencies": {
"typescript": ">=5"
},
"engines": {
"node": ">=22.0.0"
}
}