-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.6 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.6 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "eslint-config-fans",
"version": "1.9.0",
"description": "Opinionated and flexible ESLint shareable config by FANS",
"author": "Eduard Aksamitov <e@euaaaio.ru>",
"license": "MIT",
"homepage": "https://eslint-config.fans.dev/",
"repository": "eslint-config-fans",
"type": "module",
"scripts": {
"prepare": "simple-git-hooks",
"dev": "pnpx @eslint/config-inspector --config eslint.config.js",
"test:types": "tsc --noEmit",
"test:lint": "oxlint && eslint .",
"test:dedupe": "pnpm dedupe --check",
"test": "pnpm run /^test:/",
"build:inspector": "pnpx @eslint/config-inspector build --outDir dist",
"build:types": "tsx scripts/typegen.ts",
"build:oxlint": "tsx scripts/oxgen.ts",
"build": "pnpm build:types && pnpm build:oxlint"
},
"exports": {
".": "./src/index.js",
"./package.json": "./package.json"
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
"engines": {
"node": "^20.19.0 || >=22.0.0"
},
"peerDependencies": {
"eslint": "^9.27.0 || ^10.0.0",
"typescript": ">=5.8.3"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"dependencies": {
"@eslint/js": "^10.0.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@tanstack/eslint-plugin-query": "^5.91.4",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/eslint-plugin": "^1.6.9",
"astro-eslint-parser": "^1.3.0",
"eslint-config-flat-gitignore": "^2.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-de-morgan": "^2.1.1",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-oxlint": "^1.51.0",
"eslint-plugin-perfectionist": "^5.6.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^63.0.0",
"eslint-plugin-vue": "^10.8.0",
"eslint-plugin-vuejs-accessibility": "^2.5.0",
"globals": "^17.4.0",
"vue-eslint-parser": "^10.4.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"eslint": "^10.0.0",
"eslint-typegen": "^2.3.1",
"nano-staged": "^0.9.0",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.16.0",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.21.0",
"typescript": "^5.9.2",
"vitest": "^4.0.18",
"vue": "^3.5.29"
},
"nano-staged": {
"*.{js,ts}": "oxlint && eslint ."
},
"simple-git-hooks": {
"pre-commit": "pnpm nano-staged"
}
}