forked from antfu/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.75 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "eslint-config-donovan",
"type": "module",
"version": "1.0.2",
"packageManager": "pnpm@8.10.2",
"description": "Donovan's ESLint config preset",
"author": "DonovanYe <xxiaozhiyzj@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Donovan-Ye/eslint-config",
"keywords": [
"eslint-config"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --clean --dts",
"stub": "tsup src/index.ts --format esm",
"dev": "tsup src/index.ts --format esm,cjs --watch & eslint-flat-config-viewer",
"lint": "pnpm run stub && eslint .",
"release": "bumpp && pnpm publish",
"test": "vitest",
"test:timeout": "vitest --test-timeout=99999999",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"eslint": ">=8.0.0"
},
"dependencies": {
"@antfu/eslint-define-config": "^1.23.0-2",
"@stylistic/eslint-plugin": "^1.5.0-beta.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint-config-flat-gitignore": "^0.1.1",
"eslint-plugin-antfu": "2.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-i": "^2.29.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-jsonc": "^2.10.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-perfectionist": "^2.2.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-unicorn": "^49.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-vitest": "^0.3.8",
"eslint-plugin-vue": "^9.18.1",
"eslint-plugin-yml": "^1.10.0",
"globals": "^13.23.0",
"jsonc-eslint-parser": "^2.4.0",
"local-pkg": "^0.5.0",
"vue-eslint-parser": "^9.3.2",
"yaml-eslint-parser": "^1.2.2"
},
"devDependencies": {
"@stylistic/eslint-plugin-migrate": "^1.0.0",
"@types/eslint": "^8.44.6",
"@types/fs-extra": "^11.0.3",
"@types/node": "^20.8.10",
"bumpp": "^9.2.0",
"eslint": "^8.52.0",
"eslint-config-donovan": "workspace:*",
"eslint-flat-config-viewer": "^0.1.0",
"esno": "^0.17.0",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.1",
"lint-staged": "^15.0.2",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"sucrase": "^3.34.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}