-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "@bluzzi/eslint-config",
"description": "ESLint configuration preset for linting and formatting all your files",
"version": "2.0.0",
"license": "MIT",
"author": "Bluzzi",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:config": "tsup src/index.ts --minify --format cjs,esm --clean --dts",
"build:type": "tsx ./scripts/typegen.ts",
"inspector:dev": "npx @eslint/config-inspector --config eslint.config.js",
"inspector:build": "npm run build:config && npx @eslint/config-inspector build",
"inspector:start": "serve .eslint-config-inspector",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ts:check": "tsc --noEmit"
},
"homepage": "https://github.com/Bluzzi/eslint-config#readme",
"bugs": {
"url": "https://github.com/Bluzzi/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bluzzi/eslint-config.git"
},
"peerDependencies": {
"eslint": ">=9.0.0"
},
"dependencies": {
"@eslint-react/eslint-plugin": "^1.23.2",
"@eslint/js": "^9.18.0",
"@next/eslint-plugin-next": "^15.1.5",
"@stylistic/eslint-plugin": "^2.13.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint-flat-config-utils": "^0.4.0",
"eslint-plugin-antfu": "^2.7.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"local-pkg": "^0.5.1"
},
"devDependencies": {
"@eslint/config-inspector": "^0.7.1",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"eslint-typegen": "^0.3.2",
"serve": "^14.2.4",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"keywords": [
"eslint",
"config",
"typescript",
"react",
"stylistic",
"node"
]
}