-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.94 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
83
84
85
86
87
88
89
{
"name": "eslint-config-fans",
"version": "1.11.0",
"description": "Opinionated and flexible ESLint shareable config by FANS",
"homepage": "https://eslint-config.fans.dev/",
"license": "MIT",
"author": "Eduard Aksamitov <e@euaaaio.ru>",
"repository": "fandsdev/eslint-config-fans",
"type": "module",
"exports": {
".": "./src/index.js",
"./configs/*": "./src/configs/*.js",
"./package.json": "./package.json"
},
"scripts": {
"prepare": "simple-git-hooks",
"dev": "pnpx @eslint/config-inspector --config eslint.config.js",
"test:types": "tsc --noEmit",
"test:lint": "oxlint && eslint .",
"test:format": "oxfmt --check",
"test:dedupe": "pnpm dedupe --check",
"test": "pnpm run /^test:/",
"build:inspector": "pnpx @eslint/config-inspector build --outDir dist",
"build:types": "node --experimental-strip-types scripts/typegen.ts",
"build:oxlint": "node --experimental-strip-types scripts/oxgen.ts",
"build": "pnpm build:types && pnpm build:oxlint && pnpm format",
"format": "oxfmt"
},
"dependencies": {
"@e18e/eslint-plugin": "^0.5.0",
"@eslint/js": "^10.0.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@tanstack/eslint-plugin-query": "^5.100.14",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"@vitest/eslint-plugin": "^1.6.19",
"astro-eslint-parser": "^1.4.0",
"eslint-config-flat-gitignore": "^2.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-de-morgan": "^2.1.2",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-n": "^18.0.1",
"eslint-plugin-oxlint": "^1.68.0",
"eslint-plugin-perfectionist": "^5.9.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-unicorn": "^64.0.0",
"eslint-plugin-vue": "^10.9.1",
"eslint-plugin-vuejs-accessibility": "^2.5.0",
"globals": "^17.6.0",
"vue-eslint-parser": "^10.4.1"
},
"devDependencies": {
"@types/node": "^25.9.1",
"eslint": "^10.4.1",
"eslint-typegen": "^2.3.1",
"nano-staged": "^1.0.2",
"oxc-config-fans": "^0.0.6",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"oxlint-tsgolint": "^0.23.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8",
"vue": "^3.5.35"
},
"peerDependencies": {
"eslint": "^9.27.0 || ^10.0.0",
"typescript": ">=5.8.3"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
},
"nano-staged": {
"*.{js,ts,json,md,yml,yaml}": "oxfmt --no-error-on-unmatched-pattern",
"*.{js,ts}": "oxlint && eslint ."
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@11.5.1+sha512.93f7b57422ea7068257235b4c16eb60762eb68e1dc23723199cc739043ea9be2c4143274a399d8c6defa2b1176226d9ca1c4b63482d6200c1a8fbaa78c1d1485"
}