-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.9 KB
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
{
"name": "airlight-config",
"description": "Shared configurations to use with combine of each other to get cleaner, better, reusable, secure and efficient codebase",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "ls-lint && oxlint --type-aware && biome check . && dprint check",
"release": "bun run --bun ./scripts/release.ts",
"prepare": "lefthook install -f",
"tsgo": "tsgo",
"check-types": "tsgo --noEmit"
},
"engines": {
"node": ">=20.19.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dalisoft/airlight.git"
},
"keywords": [
"biome",
"eslint",
"config"
],
"author": "dalisoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/dalisoft/airlight/issues"
},
"homepage": "https://github.com/dalisoft/airlight#readme",
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-workspace-scopes": "^19.8.1",
"@eslint/js": "^9.39.2",
"@evilmartians/lefthook": "^1.13.6",
"@ls-lint/ls-lint": "^2.3.1",
"@stoplight/spectral-cli": "^6.15.0",
"@types/eslint": "^9.6.1",
"@typescript/native-preview": "^7.0.0-dev.20260209.1",
"biome-config-airlight": "workspace:*",
"dprint": "^0.51.1",
"eslint-config-airlight-node": "workspace:*",
"lint-staged-config-airlight": "workspace:*",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.15.0",
"prettier-config-airlight": "workspace:*",
"smartlint-unix": "workspace:*"
},
"overrides": {
"eslint-config-airlight-base": "workspace:*",
"chalk": "5.6.2",
"strip-ansi": "7.1.2",
"ansi-styles": "6.2.3",
"ansi-regex": "6.2.2",
"wrap-ansi": "9.0.2",
"slice-ansi": "7.1.2"
},
"trustedDependencies": [
"@biomejs/biome",
"@evilmartians/lefthook",
"dprint",
"oxc-resolver",
"unrs-resolver"
]
}