-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.2 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
{
"name": "eslint-config-airlight-base",
"version": "7.7.1",
"description": "ESLint configure base focused on code quality, security and performance on top of eslint-config-airbnb-typescript/base",
"type": "commonjs",
"main": "flat.cjs",
"exports": {
".": "./flat.cjs",
"./flat": "./flat.cjs",
"./legacy": "./legacy.cjs",
"./oxlintrc.json": "./oxlintrc.json",
"./biome.json": "./biome.json",
"./settings.cjs": "./settings.cjs",
"./overrides/*": "./overrides/*"
},
"files": [
"scripts",
"plugins",
"overrides",
"airbnb-rules.cjs",
"rules.cjs",
"flat.cjs",
"legacy.cjs",
"settings.cjs",
"oxlintrc.json",
"biome.json"
],
"scripts": {
"prepublishOnly": "node scripts/*.cjs && biome migrate eslint --write --include-inspired --include-nursery"
},
"engines": {
"node": ">=18.20.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dalisoft/airlight.git"
},
"keywords": ["eslint", "lint", "config", "airbnb", "node"],
"author": "dalisoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/dalisoft/airlight/issues"
},
"homepage": "https://github.com/dalisoft/airlight#readme",
"dependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-filename-rules": "^1.3.1",
"eslint-plugin-import-x": "^3.1.0",
"eslint-plugin-no-secrets": "^1.1.2",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-promise": "^7.2.1",
"globals": "^15.14.0",
"typescript-eslint": "^8.19.1"
},
"devDependencies": {
"@types/eslint": "~9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"eslint-define-config": "^2.1.0"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.5.0",
"prettier": "^3.3.2",
"typescript": "^5.5.4"
}
}