forked from antfu/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.88 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
94
95
96
97
98
99
100
101
102
103
{
"name": "@jdpnielsen/eslint-flat-config",
"type": "module",
"version": "1.2.0",
"packageManager": "[email protected]",
"description": "Joshuas's ESLint config",
"author": "Joshuas Nielsen <[email protected]> (https://github.com/jdpnielsen/)",
"license": "MIT",
"homepage": "https://github.com/jdpnielsen",
"repository": {
"url": "https://github.com/jdpnielsen/eslint-flat-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 .",
"prepack": "nr build",
"release": "bumpp && pnpm publish",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"eslint": ">=8.0.0"
},
"dependencies": {
"@antfu/eslint-config": "^2.8.3",
"@antfu/eslint-define-config": "1.23.0-2",
"@next/eslint-plugin-next": "^14.1.4",
"@stylistic/eslint-plugin": "^1.7.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint-config-flat-gitignore": "^0.1.3",
"eslint-plugin-antfu": "^2.1.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-i": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-jsonc": "^2.14.1",
"eslint-plugin-markdown": "^4.0.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-perfectionist": "^2.7.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-unused-imports": "^3.1.0",
"eslint-plugin-vitest": "^0.3.26",
"eslint-plugin-vue": "^9.23.0",
"eslint-plugin-yml": "^1.13.1",
"get-tsconfig": "^4.7.3",
"globals": "^14.0.0",
"jsonc-eslint-parser": "^2.4.0",
"local-pkg": "^0.5.0",
"vue-eslint-parser": "^9.4.2",
"yaml-eslint-parser": "^1.2.2"
},
"devDependencies": {
"@antfu/ni": "^0.21.12",
"@jdpnielsen/eslint-flat-config": "workspace:*",
"@stylistic/eslint-plugin-migrate": "^1.7.0",
"@types/eslint": "^8.56.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"bumpp": "^9.4.0",
"eslint": ">=8.57.0",
"eslint-flat-config-viewer": "^0.1.11",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.11.0",
"sucrase": "^3.35.0",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"unbuild": "^2.0.0",
"vitest": "^1.4.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}