-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "eslint-config-airlight-node",
"version": "5.6.3",
"description": "ESLint configure for Node.js focused on code quality, security and performance on top of eslint-config-airlight-base",
"main": "flat.cjs",
"exports": {
".": "./flat.cjs",
"./flat": "./flat.cjs",
"./legacy": "./legacy.cjs",
"./oxlintrc.json": "./oxlintrc.json",
"./biome.json": "./biome.json",
"./settings": "./settings.cjs"
},
"files": [
"rules.cjs",
"flat.cjs",
"legacy.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-config-airlight-base": "latest",
"eslint-plugin-n": "^17.14.0",
"globals": "^15.12.0"
},
"devDependencies": {
"eslint-define-config": "^2.1.0"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.5.0",
"prettier": "^3.3.2",
"typescript": "^5.5.4"
}
}