-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.43 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
{
"name": "@fafnirical/eslint-config",
"description": "ESLint rules according to fafnirical's personal preferences",
"keywords": [
"eslint",
"eslintconfig"
],
"homepage": "https://github.com/fafnirical/eslint-config#readme",
"bugs": {
"url": "https://github.com/fafnirical/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/fafnirical/eslint-config.git"
},
"license": "MIT",
"author": {
"name": "fafnirical",
"url": "https://github.com/fafnirical"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --build tsconfig.build.json",
"build:watch": "tsc --build tsconfig.build.json --watch",
"clean": "tsc --build tsconfig.build.json --clean",
"format": "concurrently \"npm:format:*(!prettier)\" && npm run format:prettier",
"format:eslint": "eslint --cache --cache-location node_modules/.cache/eslint --fix .",
"format:package-json": "sort-package-json",
"format:prettier": "prettier --cache --cache-location node_modules/.cache/prettier --write .",
"lint": "concurrently \"npm:lint:*\"",
"lint:eslint": "eslint --cache --cache-location node_modules/.cache/eslint .",
"lint:package-json": "sort-package-json --check",
"lint:prettier": "prettier --cache --cache-location node_modules/.cache/prettier --check .",
"lint:typescript": "tsc --noEmit --project tsconfig.json"
},
"dependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint-react/eslint-plugin": "^1.18.0",
"@eslint/js": "^9.15.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.10.1",
"eslint-config-flat-gitignore": "^0.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-oxc": "^0.6.0",
"eslint-plugin-import-x": "^4.5.0",
"eslint-plugin-perfectionist": "^4.2.0",
"package-up": "^5.0.0",
"type-fest": "^4.30.0",
"typescript-eslint": "^8.17.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"concurrently": "^9.1.0",
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"sort-package-json": "^2.12.0",
"typescript": "^5.7.2"
},
"peerDependencies": {
"eslint": "^9.5.0"
},
"engines": {
"node": ">=22.11.0"
}
}